    /* =========================================================
       AUTH SYSTEM
    ========================================================= */

    .dr-auth-page {
        min-height: calc(100vh - 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 55px 15px;
        background:
            radial-gradient(circle at 10% 15%, rgba(173, 134, 28, 0.07), transparent 28%),
            radial-gradient(circle at 90% 85%, rgba(0, 6, 67, 0.06), transparent 30%),
            #F7F8FC;
    }

    .dr-auth-wrapper {
        width: 100%;
        max-width: 440px;
    }

    .dr-auth-card {
        position: relative;
        background: #FFFFFF;
        border: 1px solid #EEF0F4;
        border-radius: 20px;
        box-shadow: 0 15px 45px rgba(0, 6, 67, 0.09);
        overflow: hidden;
    }

    /* نوار بالای کارت */
    .dr-auth-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(
            90deg,
            #000643 0%,
            #161B62 55%,
            #AD861C 100%
        );
    }

    .dr-auth-body {
        padding: 38px 38px 30px;
    }

    /* =========================================================
       BRAND
    ========================================================= */

    .dr-auth-brand {
        text-align: center;
        margin-bottom: 28px;
    }

    .dr-auth-brand-icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 17px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000643;
        color: #FFFFFF;
        font-size: 27px;
        box-shadow: 0 8px 22px rgba(0, 6, 67, 0.16);
    }

    .dr-auth-brand-icon i {
        line-height: 1;
    }

    .dr-auth-brand h1 {
        margin: 0;
        color: #000643;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.6;
    }

    .dr-auth-brand p {
        margin: 6px 0 0;
        color: #667085;
        font-size: 13px;
        line-height: 1.8;
    }

    /* =========================================================
       ERROR
    ========================================================= */

    .dr-auth-errors {
        margin-bottom: 20px;
    }

    .dr-auth-errors > * {
        margin-bottom: 8px;
    }

    /* =========================================================
       FORM
    ========================================================= */

    .dr-auth-form-title {
        margin-bottom: 20px;
    }

    .dr-auth-form-title strong {
        display: block;
        color: #111827;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .dr-auth-form-title span {
        display: block;
        color: #98A2B3;
        font-size: 12px;
    }

    .dr-auth-field {
        position: relative;
        margin-bottom: 17px;
    }

    .dr-auth-label {
        display: block;
        color: #344054;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .dr-auth-input-wrap {
        position: relative;
    }

    .dr-auth-input-icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #98A2B3;
        font-size: 19px;
        pointer-events: none;
        z-index: 2;
    }

    .dr-auth-input {
        width: 100%;
        height: 52px;
        padding: 0 45px 0 15px;
        border: 1px solid #E5E7EB;
        border-radius: 11px;
        background: #FFFFFF;
        color: #111827;
        font-family: 'IRANSansFanum', sans-serif;
        font-size: 14px;
        outline: none;
        transition: all .2s ease;
        box-shadow: none;
    }

    .dr-auth-input::placeholder {
        color: #98A2B3;
    }

    .dr-auth-input:hover {
        border-color: #C9CDD5;
    }

    .dr-auth-input:focus {
        border-color: #000643;
        box-shadow: 0 0 0 3px rgba(0, 6, 67, 0.07);
    }

    /* حذف فلش input number */
    .dr-auth-input::-webkit-outer-spin-button,
    .dr-auth-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .dr-auth-input[type=number] {
        -moz-appearance: textfield;
    }

    /* =========================================================
       SUBMIT
    ========================================================= */

    .dr-auth-submit {
        width: 100%;
        height: 52px;
        border: 0;
        border-radius: 11px;
        background: #000643;
        color: #FFFFFF;
        font-family: 'IRANSansFanum', sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all .2s ease;
        box-shadow: 0 7px 18px rgba(0, 6, 67, 0.16);
    }

    .dr-auth-submit:hover {
        background: #161B62;
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0, 6, 67, 0.20);
    }

    .dr-auth-submit:active {
        transform: translateY(0);
    }

    .dr-auth-submit i {
        margin-left: 6px;
        font-size: 17px;
        vertical-align: -2px;
    }

    /* =========================================================
       TERMS
    ========================================================= */

    .dr-auth-terms {
        border-top: 1px solid #EEF0F4;
        padding: 19px 30px 21px;
        text-align: center;
        background: #FCFCFD;
    }

    .dr-auth-terms p {
        margin: 0;
        color: #98A2B3;
        font-size: 11px;
        line-height: 2;
    }

    .dr-auth-terms a {
        color: #000643;
        font-weight: 700;
        text-decoration: none;
        transition: color .2s ease;
    }

    .dr-auth-terms a:hover {
        color: #AD861C;
    }

    /* =========================================================
       SECURITY NOTE
    ========================================================= */

    .dr-auth-security {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 18px;
        color: #98A2B3;
        font-size: 11px;
    }

    .dr-auth-security i {
        color: #198754;
        font-size: 15px;
    }

    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 575.98px) {

        .dr-auth-page {
            min-height: calc(100vh - 80px);
            padding: 25px 12px;
            align-items: flex-start;
        }

        .dr-auth-wrapper {
            max-width: 100%;
            margin-top: 15px;
        }

        .dr-auth-card {
            border-radius: 16px;
        }

        .dr-auth-body {
            padding: 30px 22px 25px;
        }

        .dr-auth-brand {
            margin-bottom: 25px;
        }

        .dr-auth-brand-icon {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            font-size: 24px;
            margin-bottom: 14px;
        }

        .dr-auth-brand h1 {
            font-size: 20px;
        }

        .dr-auth-input,
        .dr-auth-submit {
            height: 50px;
        }

        .dr-auth-terms {
            padding: 17px 18px 19px;
        }
    }
    
/* =========================================================
   PASSWORD
========================================================= */

.dr-auth-password-wrap {
    position: relative;
}

.dr-auth-password-input {
    padding-left: 50px;
}

.dr-auth-password-toggle {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #98A2B3;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all .2s ease;
}

.dr-auth-password-toggle:hover {
    color: #000643;
    background: #F1F3F8;
}

.dr-auth-password-toggle i {
    font-size: 18px;
}


/* =========================================================
   DIVIDER
========================================================= */

.dr-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 22px 0;
}

.dr-auth-divider::before,
.dr-auth-divider::after {
    content: "";
    height: 1px;
    flex: 1;

    background: #EEF0F4;
}

.dr-auth-divider span {
    color: #98A2B3;
    font-size: 11px;
}


/* =========================================================
   OTP LOGIN BUTTON
========================================================= */

.dr-auth-otp-button {
    width: 100%;
    min-height: 62px;

    display: flex;
    align-items: center;

    padding: 9px 11px;

    border: 1px solid #E5E7EB;
    border-radius: 12px;

    background: #FFFFFF;
    color: #111827;

    font-family: 'IRANSansFanum', sans-serif;

    text-align: right;

    cursor: pointer;

    transition: all .2s ease;
}

.dr-auth-otp-button:hover {
    border-color: #AD861C;
    background: #FFFEFA;
    box-shadow: 0 5px 15px rgba(173, 134, 28, .08);
}

.dr-auth-otp-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(173, 134, 28, .10);
    color: #AD861C;

    font-size: 19px;
}

.dr-auth-otp-content {
    min-width: 0;
    flex: 1;

    padding: 0 12px;
}

.dr-auth-otp-content strong {
    display: block;

    color: #111827;
    font-size: 12px;
    font-weight: 700;

    margin-bottom: 3px;
}

.dr-auth-otp-content small {
    display: block;

    color: #98A2B3;
    font-size: 10px;
}

.dr-auth-otp-arrow {
    color: #98A2B3;
    font-size: 17px;

    transition: transform .2s ease;
}

.dr-auth-otp-button:hover .dr-auth-otp-arrow {
    color: #AD861C;
    transform: translateX(-3px);
}


/* =========================================================
   LOADING
========================================================= */

.dr-auth-loading {
    display: inline-block;
    animation: drAuthSpin .8s linear infinite;
}

@keyframes drAuthSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   DISABLED
========================================================= */

.dr-auth-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .dr-auth-otp-button {
        min-height: 58px;
    }

    .dr-auth-otp-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .dr-auth-otp-content strong {
        font-size: 11px;
    }

}
/* =========================================================
   OTP INFO
========================================================= */

.dr-auth-otp-info {
    display: flex;
    align-items: center;

    padding: 12px;

    margin-bottom: 22px;

    border: 1px solid #EEF0F4;
    border-radius: 12px;

    background: #FCFCFD;
}

.dr-auth-otp-info-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(0, 6, 67, .06);
    color: #000643;

    font-size: 19px;
}

.dr-auth-otp-info > div:last-child {
    padding-right: 11px;
}

.dr-auth-otp-info span {
    display: block;

    color: #98A2B3;
    font-size: 10px;

    margin-bottom: 3px;
}

.dr-auth-otp-info strong {
    display: block;

    color: #111827;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   OTP TITLE
========================================================= */

.dr-auth-code-title {
    text-align: center;
    margin-bottom: 17px;
}


/* =========================================================
   OTP INPUTS
========================================================= */

.dr-auth-code {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin: 0 0 22px;
}

.dr-auth-code-input {
    width: 58px;
    height: 62px;

    border: 1px solid #E5E7EB;
    border-radius: 13px;

    background: #FFFFFF;

    color: #000643;

    font-family: 'IRANSansFanum', sans-serif;

    font-size: 24px;
    font-weight: 800;

    text-align: center;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        transform .2s ease;
}

.dr-auth-code-input:hover {
    border-color: #C9CDD5;
}

.dr-auth-code-input:focus {
    border-color: #000643;

    background: #FBFCFF;

    box-shadow:
        0 0 0 3px rgba(0, 6, 67, .08);

    transform: translateY(-1px);
}


/* =========================================================
   RESEND
========================================================= */

.dr-auth-resend {
    text-align: center;

    margin-top: 20px;
}

.dr-auth-countdown {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    color: #98A2B3;
    font-size: 11px;
}

.dr-auth-countdown #clock {
    min-width: 20px;

    color: #AD861C;

    font-size: 12px;
    font-weight: 800;
}

.dr-auth-resend-button {
    border: 0;
    background: transparent;

    color: #000643;

    font-family: 'IRANSansFanum', sans-serif;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    padding: 5px 8px;

    transition: color .2s ease;
}

.dr-auth-resend-button:hover {
    color: #AD861C;
}

.dr-auth-resend-button i {
    margin-left: 4px;
    font-size: 15px;
    vertical-align: -2px;
}


/* =========================================================
   CHANGE MOBILE
========================================================= */

.dr-auth-change-mobile {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    margin-top: 17px;

    color: #667085;

    font-size: 11px;

    text-decoration: none;

    transition: color .2s ease;
}

.dr-auth-change-mobile:hover {
    color: #000643;
}

.dr-auth-change-mobile i {
    font-size: 14px;
}


/* =========================================================
   MOBILE OTP
========================================================= */

@media (max-width: 575.98px) {

    .dr-auth-code {
        gap: 8px;
    }

    .dr-auth-code-input {
        width: 54px;
        height: 58px;

        font-size: 22px;
    }

    .dr-auth-otp-info {
        margin-bottom: 20px;
    }

}

@media (max-width: 360px) {

    .dr-auth-code {
        gap: 6px;
    }

    .dr-auth-code-input {
        width: 51px;
        height: 56px;
    }

}
/* =========================================================
   REGISTER MESSAGE
========================================================= */

.dr-auth-register-message {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-bottom: 20px;
    padding: 11px 12px;

    border: 1px solid rgba(173, 134, 28, .18);
    border-radius: 11px;

    background: rgba(173, 134, 28, .055);

    color: #667085;

    font-size: 11px;
    line-height: 1.9;
}

.dr-auth-register-message > i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #AD861C;
    font-size: 16px;
}

.dr-auth-register-message span {
    display: block;
}