﻿/* =========================================================
   PRACTIVA LOGIN V2
   ========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

    body.gray-bg {
        background: #f7f9fa;
        font-family: "Open Sans", Arial, sans-serif;
        color: #333;
    }


/* =========================================================
   PAGE
   ========================================================= */

.practiva-login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 7% 60%, rgba(24,166,137,.05), transparent 22%), linear-gradient(180deg, #fafbfc 0%, #f6f8f9 100%);
}

    .practiva-login-page::after {
        content: "";
        position: absolute;
        left: -5%;
        right: -5%;
        bottom: 62px;
        height: 95px;
        background: rgba(24, 166, 137, 0.06);
        border-radius: 50% 50% 0 0;
        transform: scaleX(1.2);
        pointer-events: none;
    }


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.login-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 30px 35px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
    gap: 75px;
    flex: 1;
    position: relative;
    z-index: 2;
}


/* =========================================================
   LEFT SECTION
   ========================================================= */

.brand-section {
    padding-top: 10px;
}

.brand-logo{
    padding: 15px 20px 15px 20px;
}

.brand-logo img {
    width: 245px;
    max-width: 100%;
    height: auto;
}

.brand-content h1 {
    margin: 22px 0 0;
    max-width: 520px;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 600;
    color: #34373d;
}

.heading-line {
    width: 45px;
    height: 3px;
    background: #18a689;
    margin: 20px 0 24px;
    border-radius: 20px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.feature-list {
    max-width: 520px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #555c63;
}

.feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
}

    .feature-icon.green {
        background: #18a689;
    }

    .feature-icon.red {
        background: #f25f5c;
    }

    .feature-icon.blue {
        background: #2d8bd8;
    }

    .feature-icon.cyan {
        background: #35b9c8;
    }

    .feature-icon.orange {
        background: #f5a64a;
    }


/* =========================================================
   MOBILE APPLICATION CARD
   ========================================================= */

.mobile-app-card {
    margin-top: 28px;
    max-width: 520px;
    background: linear-gradient( 135deg, rgba(24,166,137,.09), rgba(24,166,137,.025) );
    border: 1px solid rgba(24,166,137,.12);
    border-radius: 12px;
    padding: 18px 20px;
}

.mobile-app-content {
    display: flex;
    align-items: center;
    gap: 17px;
}

.mobile-app-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #18a689;
    color: #fff;
    font-size: 35px;
    box-shadow: 0 7px 18px rgba(24,166,137,.22);
}

.mobile-app-info {
    flex: 1;
}

    .mobile-app-info h3 {
        margin: 0 0 5px;
        font-size: 17px;
        font-weight: 600;
        color: #30343a;
    }

        .mobile-app-info h3 span {
            color: #18a689;
        }

    .mobile-app-info p {
        margin: 0 0 13px;
        font-size: 12px;
        line-height: 1.5;
        color: #6b7076;
    }


/* =========================================================
   STORE BUTTONS
   ========================================================= */

.store-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-button {
    min-width: 135px;
    height: 43px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px;
    background: #111;
    color: #fff !important;
    border-radius: 7px;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .store-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0,0,0,.18);
    }

    .store-button > i {
        font-size: 24px;
    }

    .store-button div {
        display: flex;
        flex-direction: column;
    }

    .store-button small {
        font-size: 8px;
        line-height: 1;
        color: #fff;
    }

    .store-button strong {
        font-size: 13px;
        line-height: 1.4;
        font-weight: 600;
    }


/* =========================================================
   LOGIN SECTION
   ========================================================= */

.login-section {
    width: 100%;
}


/* =========================================================
   LOGIN CARD
   ========================================================= */

.login-card,
.product-card {
    background: #fff;
    border: 1px solid #e6e9ec;
    border-radius: 9px;
    box-shadow: 0 3px 8px rgba(0,0,0,.06), 0 15px 35px rgba(0,0,0,.025);
}

.login-card {
    padding: 27px 30px 25px;
}

    .login-card h2 {
        margin: 0 0 25px;
        font-size: 23px;
        font-weight: 600;
        color: #30343a;
    }


    /* =========================================================
   FORM
   ========================================================= */

    .login-card .form-group {
        margin-bottom: 18px;
    }

        .login-card .form-group > label {
            display: block;
            margin-bottom: 7px;
            font-size: 15px;
            font-weight: 600;
            color: #4d5359;
        }


/* =========================================================
   INPUT
   ========================================================= */

.custom-input-group {
    display: flex;
    align-items: stretch;
    height: 46px;
    border: 1px solid #dfe3e7;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .custom-input-group:focus-within {
        border-color: #18a689;
        box-shadow: 0 0 0 3px rgba(24,166,137,.08);
    }

.input-icon {
    width: 47px;
    min-width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e7e9;
    color: #737a80;
}

.custom-input-group .form-control {
    height: 44px;
    flex: 1;
    border: 0 !important;
    box-shadow: none !important;
    padding: 10px 13px;
    font-size: 13px;
    background: transparent;
}

    .custom-input-group .form-control:focus {
        outline: none;
    }

.password-toggle {
    width: 48px;
    border: 0;
    border-left: 1px solid #e5e7e9;
    background: #fff;
    color: #18a689;
    cursor: pointer;
}

    .password-toggle:hover {
        background: #f8faf9;
    }


/* =========================================================
   REMEMBER ME
   ========================================================= */

.remember-row {
    margin: 4px 0 18px;
}

.remember-checkbox {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    color: #50555a;
}

    .remember-checkbox input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.checkmark {
    width: 18px;
    height: 18px;
    margin-right: 9px;
    border: 1px solid #ccd2d7;
    border-radius: 4px;
    background: #fff;
    position: relative;
}

.remember-checkbox input:checked + .checkmark {
    background: #18a689;
    border-color: #18a689;
}

    .remember-checkbox input:checked + .checkmark::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 2px;
        width: 5px;
        height: 9px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

.login-button {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: #18a689;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, transform .1s ease;
}

    .login-button:hover {
        background: #15977d;
        box-shadow: 0 5px 14px rgba(24,166,137,.22);
    }

    .login-button:active {
        transform: translateY(1px);
    }

    .login-button:disabled {
        opacity: .7;
        cursor: not-allowed;
    }


/* =========================================================
   VALIDATION
   ========================================================= */

.validation-area {
    min-height: 28px;
    padding-top: 5px;
}

.lblerror,
.field-validation-error {
    font-size: 11px;
    color: #e74c3c;
}


/* =========================================================
   LOGIN LINKS
   ========================================================= */

.login-links {
    padding-top: 15px;
    border-top: 1px solid #edf0f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .login-links a {
        color: #18a689;
        font-size: 14px;
        text-decoration: none;
    }

        .login-links a:hover {
            color: #12846e;
            text-decoration: underline;
        }


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    margin-top: 17px;
    padding: 20px 22px;
}

    .product-card h3 {
        margin: 0 0 15px;
        font-size: 14px;
        font-weight: 600;
        color: #30343a;
    }

        .product-card h3 span {
            color: #e74c3c;
        }

.product-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


/* =========================================================
   PRODUCT OPTION
   ========================================================= */

.product-option {
    min-height: 73px;
    display: flex;
    align-items: center;
    padding: 13px 15px;
    border: 1px solid #dfe4e8;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

    .product-option:hover {
        border-color: #18a689;
        box-shadow: 0 3px 10px rgba(24,166,137,.08);
    }

    .product-option.selected {
        border-color: #18a689;
        background: rgba(24,166,137,.035);
    }

    .product-option input {
        display: none;
    }


/* RADIO */

.custom-radio {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid #ccd3d8;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.product-option.selected .custom-radio {
    border-color: #18a689;
}

    .product-option.selected .custom-radio::after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #18a689;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }


/* PRODUCT TEXT */

.product-text {
    display: flex;
    flex-direction: column;
}

    .product-text strong {
        font-size: 13px;
        font-weight: 600;
        color: #2f3439;
    }

    .product-text small {
        margin-top: 3px;
        font-size: 10px;
        color: #747a80;
    }


/* =========================================================
   FOOTER
   ========================================================= */

.login-footer {
    min-height: 65px;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1180px;
    margin: auto auto 0;
    padding: 20px 30px;
    border-top: 1px solid #e8ebed;
    display: grid;
    grid-template-columns: minmax(200px, 1fr) auto minmax(300px, 1fr);
    align-items: center;
    gap: 30px;
    font-size: 11px;
    color: #74797e;
}

    .login-footer > div:nth-child(2) {
        text-align: center;
    }

    .login-footer > div:last-child {
        text-align: right;
    }

    .login-footer a {
        color: #1688ce;
        text-decoration: none;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .login-container {
        max-width: 760px;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 35px;
    }

    .brand-section {
        padding-top: 0;
    }

    .brand-logo {
        text-align: center;
    }

    .brand-content h1 {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .heading-line {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list {
        margin: 0 auto;
    }

    .mobile-app-card {
        margin-left: auto;
        margin-right: auto;
    }

    .login-section {
        max-width: 580px;
        margin: 0 auto;
    }

    .login-footer {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

        .login-footer > div:nth-child(2),
        .login-footer > div:last-child {
            text-align: center;
        }

    .brand-section {
        display: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .login-container {
        display: flex;
        flex-direction: column;
        padding: 22px 15px 25px;
        gap: 17px;
    }

    .brand-logo img {
        width: 190px;
    }

    /*
       On mobile keep login as the primary focus.
    */

    .brand-content {
        display: none;
    }

    .login-section {
        display: flex;
        flex-direction: column;
    }

    .login-card {
        padding: 22px 18px;
    }

        .login-card h2 {
            font-size: 21px;
            margin-bottom: 20px;
        }

    .product-card {
        padding: 18px;
    }

    .product-options {
        grid-template-columns: 1fr;
    }

    .product-option {
        min-height: 66px;
    }

    /*
       Move mobile app download below login/product area.
    */

    .mobile-app-card {
        display: none;
        order: 3;
        margin-top: 0;
        padding: 16px;
    }

    .mobile-app-content {
        align-items: flex-start;
    }

    .mobile-app-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 27px;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-button {
        width: 100%;
        max-width: 180px;
    }

    .login-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .login-footer {
        padding: 18px 15px 25px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .login-card {
        padding: 20px 15px;
    }

    .product-card {
        padding: 16px 14px;
    }

    .custom-input-group {
        height: 44px;
    }
}


/* Register CSS*/


<style >
/* ====================================================
           BASE
           ==================================================== */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

    body.gray-bg {
        background: #f7f9fa;
        color: #343a40;
        font-family: "Open Sans", Arial, sans-serif;
    }


/* ====================================================
           PAGE
           ==================================================== */

.practiva-register-page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient( circle at 7% 55%, rgba(24, 166, 137, 0.045), transparent 24% ), linear-gradient( 180deg, #fafbfc 0%, #f6f8f9 100% );
}


    /*
         * Decorative bottom curve.
         */

    .practiva-register-page::after {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        bottom: 55px;
        height: 100px;
        background: rgba(24, 166, 137, 0.055);
        border-radius: 50% 50% 0 0;
        transform: scaleX(1.2);
        pointer-events: none;
    }


/* ====================================================
           MAIN LAYOUT
           ==================================================== */

.register-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
    gap: 75px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 30px 35px;
    flex: 1;
}


/* ====================================================
           LEFT BRAND SECTION
           ==================================================== */

.brand-section {
    padding-top: 10px;
}


.brand-logo img {
    display: block;
    width: 245px;
    max-width: 100%;
    height: auto;
}


.brand-title {
    max-width: 520px;
    margin: 20px 0 0;
    color: #34373d;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}


.heading-line {
    width: 45px;
    height: 3px;
    margin: 19px 0 24px;
    border-radius: 20px;
    background: #18a689;
}



.back-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #1688ce;
    font-size: 12px;
    text-decoration: none;
}


    .back-home:hover {
        color: #126da5;
        text-decoration: underline;
    }


/* ====================================================
           REGISTER SECTION
           ==================================================== */

.register-section {
    width: 100%;
}


/* ====================================================
           REGISTER CARD
           ==================================================== */

.register-card {
    padding: 26px 30px 22px;
    border: 1px solid #e5e9ec;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06), 0 15px 35px rgba(0, 0, 0, 0.025);
}


    .register-card h2 {
        margin: 0 0 22px;
        color: #30343a;
        font-size: 22px;
        font-weight: 600;
    }


/* ====================================================
           PRODUCT SELECTION
           ==================================================== */

.product-section {
    margin-bottom: 21px;
}


.field-label {
    display: block;
    margin-bottom: 8px;
    color: #4d5359;
    font-size: 12px;
    font-weight: 600;
}


.required {
    color: #e74c3c;
}


.product-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


.product-option {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 12px 13px;
    border: 1px solid #dfe4e8;
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}


    .product-option:hover {
        border-color: #18a689;
        box-shadow: 0 3px 10px rgba(24, 166, 137, 0.08);
    }


    .product-option.selected {
        border-color: #18a689;
        background: rgba(24, 166, 137, 0.035);
        box-shadow: 0 0 0 2px rgba(24, 166, 137, 0.06);
    }


    .product-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }


/* ====================================================
           CUSTOM RADIO
           ==================================================== */

.custom-radio {
    position: relative;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-right: 11px;
    border: 1.5px solid #cbd3d8;
    border-radius: 50%;
    background: #ffffff;
}


.product-option.selected .custom-radio {
    border-color: #18a689;
}


    .product-option.selected .custom-radio::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #18a689;
        transform: translate(-50%, -50%);
    }



.product-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}


    .product-text strong {
        color: #30353a;
        font-size: 13px;
        font-weight: 600;
    }


    .product-text small {
        margin-top: 3px;
        color: #747a80;
        font-size: 10px;
        line-height: 1.3;
    }



.form-divider {
    height: 1px;
    margin: 0 0 19px;
    background: #edf0f2;
}



.register-card .form-group {
    margin-bottom: 16px;
}


.register-card .form-label {
    display: block;
    margin-bottom: 7px;
    color: #4d5359;
    font-size: 14px;
    font-weight: 600;
}


.register-input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 44px;
    overflow: hidden;
    border: 1px solid #dfe3e7;
    border-radius: 5px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


    .register-input-group:focus-within {
        border-color: #18a689;
        box-shadow: 0 0 0 3px rgba(24, 166, 137, 0.08);
    }



.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    border-right: 1px solid #e5e7e9;
    color: #737a80;
    background: #fafbfb;
}



.country-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    min-width: 55px;
    border-right: 1px solid #e5e7e9;
    background: #fafbfb;
    color: #60666c;
    font-size: 12px;
}



.register-input-group .form-control {
    flex: 1;
    width: 100%;
    height: 42px;
    padding: 10px 13px;
    border: 0 !important;
    outline: 0;
    background: transparent;
    box-shadow: none !important;
    color: #343a40;
    font-size: 13px;
}


    .register-input-group .form-control::placeholder {
        color: #a1a6ab;
    }



.lblerror,
.field-validation-error {
    display: block;
    margin-top: 4px;
    color: #e74c3c;
    font-size: 14px;
}


.lblsuccess {
    display: block;
    margin-top: 5px;
    color: #18a689;
    font-size: 14px;
}


.validation-summary {
    min-height: 7px;
}


    .register-button {
        width: 100%;
        height: 44px;
        margin-top: 2px;
        border: 0;
        border-radius: 4px;
        background: #18a689;
        color: #ffffff;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    }


    .register-button:hover {
        background: #15977d;
        box-shadow: 0 5px 14px rgba(24, 166, 137, 0.22);
    }


    .register-button:active {
        transform: translateY(1px);
    }


    .register-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }



.login-link-row {
    margin-top: 13px;
    text-align: right;
    color: #858b90;
    font-size: 14px;
}


    .login-link-row a {
        color: #18a689;
        font-weight: 600;
        text-decoration: none;
    }


        .login-link-row a:hover {
            color: #12846e;
            text-decoration: underline;
        }


.terms-section {
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid #edf0f2;
    color: #6c7278;
    font-size: 10px;
    line-height: 1.55;
}


    .terms-section a {
        color: #18a689;
        text-decoration: none;
    }


        .terms-section a:hover {
            text-decoration: underline;
        }



    .register-footer {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: minmax(200px, 1fr) auto minmax(300px, 1fr);
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 1180px;
        min-height: 65px;
        margin: auto auto 0;
        padding: 20px 30px;
        border-top: 1px solid #e8ebed;
        color: #74797e;
        font-size: 11px;
    }


    .register-footer > div:nth-child(2) {
        text-align: center;
    }


    .register-footer > div:last-child {
        text-align: right;
    }


    .register-footer a {
        color: #1688ce;
        text-decoration: none;
    }


        .register-footer a:hover {
            text-decoration: underline;
        }



@media (max-width: 991px) {

    .register-container {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 720px;
        padding-top: 30px;
    }


    .brand-section {
        padding-top: 0;
        text-align: center;
    }


    .brand-logo img {
        width: 215px;
        margin: 0 auto;
    }


    .brand-title {
        margin-left: auto;
        margin-right: auto;
    }


    .heading-line {
        margin-left: auto;
        margin-right: auto;
    }


    .feature-list {
        max-width: 530px;
        margin: 0 auto;
        text-align: left;
    }


    .back-home {
        margin-top: 15px;
    }


    .register-section {
        max-width: 580px;
        margin: 0 auto;
    }


    .register-footer {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }


        .register-footer > div:nth-child(2),
        .register-footer > div:last-child {
            text-align: center;
        }
}


@media (max-width: 600px) {

    .practiva-register-page::after {
        display: none;
    }


    .register-container {
        display: block;
        padding: 22px 15px 25px;
    }


    .brand-section {
        margin-bottom: 18px;
    }


    .brand-logo img {
        width: 185px;
    }

    .brand-title,
    .heading-line,
    .feature-list,
    .back-home {
        display: none;
    }


    .register-card {
        padding: 21px 17px;
    }


        .register-card h2 {
            margin-bottom: 20px;
            font-size: 20px;
        }


    .product-options {
        grid-template-columns: 1fr;
    }


    .product-option {
        min-height: 65px;
    }


    .register-footer {
        padding: 18px 15px 25px;
    }
}


@media (max-width: 380px) {

    .register-container {
        padding-left: 10px;
        padding-right: 10px;
    }


    .register-card {
        padding: 19px 14px;
    }


    .product-option {
        padding: 11px 12px;
    }
}



.forgot-card {
    padding: 28px 30px 25px;
}


.forgot-header {
    margin-bottom: 24px;
}


    .forgot-header h2 {
        margin: 0 0 9px;
        color: #30343a;
        font-size: 23px;
        font-weight: 600;
    }


    .forgot-header p {
        max-width: 410px;
        margin: 0;
        color: #747a80;
        font-size: 14px;
        line-height: 1.6;
    }


.forgot-heading-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}


.forgot-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(24, 166, 137, 0.09);
    color: #18a689;
    font-size: 15px;
}


.forgot-heading-row h2 {
    margin: 0;
}


.forgot-card .form-group {
    margin-bottom: 18px;
}


    .forgot-card .form-group > label {
        display: block;
        margin-bottom: 7px;
        color: #4d5359;
        font-size: 12px;
        font-weight: 600;
    }



.forgot-button {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: #18a689;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}


    .forgot-button:hover {
        background: #15977d;
        box-shadow: 0 5px 14px rgba(24, 166, 137, 0.22);
    }


    .forgot-button:active {
        transform: translateY(1px);
    }


    .forgot-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }


.forgot-message-area {
    min-height: 32px;
    padding-top: 6px;
}


.lblsuccess {
    display: block;
    color: #18a689;
    font-size: 11px;
}


.forgot-login-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    padding-top: 17px;
    border-top: 1px solid #edf0f2;
}


.forgot-login-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #18a689;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}


    .forgot-login-link:hover {
        color: #12846e;
        text-decoration: none;
    }



.forgot-section {
    padding-top: 65px;
}



.forgot-loader {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    overflow: hidden;
    background: #f7f9fa;
}


.forgot-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}


    .forgot-loader-content img {
        display: block;
        width: 220px;
        max-width: 70%;
        height: auto;
        margin-bottom: 20px;
    }


body.auth-loading {
    height: 100vh;
    overflow: hidden !important;
}



@media (max-width: 991px) {

    .forgot-section {
        padding-top: 0;
    }
}



@media (max-width: 600px) {

    .forgot-card {
        padding: 22px 18px;
    }


    .forgot-heading-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }


    .forgot-header h2 {
        font-size: 20px;
    }


    .forgot-header p {
        font-size: 11px;
    }
}
