/* ============================================================
   CAREERSETU PRO
   AUTHENTICATION SYSTEM
   FINAL REPLACEMENT

   Path:
   public_html/assets/css/auth.css

   Supports:
   - Register
   - Login
   - Forgot Password
   - Reset Password
   - Verify Email
============================================================ */


/* ============================================================
   01. AUTH PAGE ROOT
============================================================ */

.cs-auth-page {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 99, 235, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(14, 165, 233, 0.07),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #f2f7ff 48%,
            #ffffff 100%
        );
}

.cs-auth-page *,
.cs-auth-page *::before,
.cs-auth-page *::after {
    box-sizing: border-box;
}


/* ============================================================
   02. BACKGROUND DECORATION
============================================================ */

.cs-auth-page::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -220px;
    right: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.10),
            transparent 68%
        );
    pointer-events: none;
}

.cs-auth-page::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -220px;
    bottom: -250px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(14, 165, 233, 0.08),
            transparent 68%
        );
    pointer-events: none;
}


/* ============================================================
   03. AUTH SECTION
============================================================ */

.cs-auth-section {
    position: relative;
    width: 100%;
    padding: 70px 0 78px;
}

.cs-auth-section > .container {
    position: relative;
}


/* ============================================================
   04. MAIN AUTH LAYOUT
============================================================ */

.cs-auth-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 0.82fr);
    align-items: center;
    gap: clamp(45px, 6vw, 90px);
    width: 100%;
}


/* ============================================================
   05. INTRO COLUMN
============================================================ */

.cs-auth-intro {
    position: relative;
    min-width: 0;
}

.cs-auth-intro-inner {
    position: relative;
    max-width: 590px;
}


/* ============================================================
   06. AUTH EYEBROW
============================================================ */

.cs-auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 18px;
    padding: 8px 12px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.cs-auth-eyebrow i {
    font-size: 10px;
}


/* ============================================================
   07. MAIN TITLE
============================================================ */

.cs-auth-title {
    max-width: 570px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(40px, 4.4vw, 66px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.cs-auth-title span {
    display: block;
    color: #2563eb;
}


/* ============================================================
   08. INTRO DESCRIPTION
============================================================ */

.cs-auth-description {
    max-width: 550px;
    margin: 22px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}


/* ============================================================
   09. BENEFITS
============================================================ */

.cs-auth-benefits {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 570px;
    margin-top: 30px;
}

.cs-auth-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 15px;
    border: 1px solid #e6edf6;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.035);
    backdrop-filter: blur(10px);
}

.cs-auth-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
}

.cs-auth-benefit > div:last-child {
    min-width: 0;
}

.cs-auth-benefit strong {
    display: block;
    margin: 1px 0 4px;
    color: #1e293b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.cs-auth-benefit span {
    display: block;
    color: #718096;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.55;
}


/* ============================================================
   10. TRUST NOTE
============================================================ */

.cs-auth-trust-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 570px;
    margin-top: 17px;
    padding: 13px 15px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    border-radius: 12px;
    background: rgba(239, 246, 255, 0.72);
}

.cs-auth-trust-note > i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #2563eb;
    font-size: 12px;
}

.cs-auth-trust-note p {
    margin: 0;
    color: #64748b;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.65;
}


/* ============================================================
   11. FORM COLUMN
============================================================ */

.cs-auth-form-column {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-width: 0;
    margin-left: auto;
}


/* ============================================================
   12. AUTH CARD
============================================================ */

.cs-auth-card {
    position: relative;
    width: 100%;
    padding: 31px;
    overflow: hidden;
    border: 1px solid #e3eaf4;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.10);
}

.cs-auth-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, 0.07),
            transparent 68%
        );
    pointer-events: none;
}


/* ============================================================
   13. CARD HEADER
============================================================ */

.cs-auth-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 25px;
}

.cs-auth-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #0ea5e9
        );
    color: #ffffff;
    font-size: 16px;
    box-shadow:
        0 9px 22px rgba(37, 99, 235, 0.20);
}

.cs-auth-card-header > div:last-child {
    min-width: 0;
}

.cs-auth-card-eyebrow {
    display: block;
    margin: 1px 0 4px;
    color: #2563eb;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cs-auth-card-header h2 {
    margin: 0;
    color: #0f172a;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.cs-auth-card-header p {
    margin: 5px 0 0;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.5;
}


/* ============================================================
   14. ALERTS
============================================================ */

.cs-auth-alert {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    width: 100%;
    margin: 0 0 18px;
    padding: 11px 13px;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.55;
}

.cs-auth-alert[hidden] {
    display: none !important;
}

.cs-auth-alert i {
    flex: 0 0 auto;
    margin-top: 2px;
}

.cs-auth-alert-info {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
}

.cs-auth-alert-success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.cs-auth-alert-danger {
    border-color: #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

.cs-auth-alert-warning {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}


/* ============================================================
   15. FORM
============================================================ */

.cs-auth-form {
    position: relative;
    z-index: 1;
    width: 100%;
}

.cs-form-group {
    width: 100%;
    margin-bottom: 16px;
}


/* ============================================================
   16. FORM LABEL
============================================================ */

.cs-form-label {
    display: block;
    margin: 0 0 7px;
    color: #334155;
    font-size: 10px;
    font-weight: 750;
    line-height: 1.4;
}

.cs-form-label > span {
    color: #dc2626;
}


/* ============================================================
   17. INPUT WRAPPER
============================================================ */

.cs-input-wrap {
    position: relative;
    width: 100%;
}


/* ============================================================
   18. INPUT ICON
============================================================ */

.cs-input-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #94a3b8;
    font-size: 12px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 0.2s ease;
}

.cs-input-wrap:focus-within .cs-input-icon {
    color: #2563eb;
}


/* ============================================================
   19. FORM CONTROL
============================================================ */

.cs-auth-page .cs-form-control.form-control {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 10px 42px 10px 42px;
    border: 1px solid #dbe3ee;
    border-radius: 11px;
    background: #ffffff;
    color: #0f172a;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    outline: none;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.cs-auth-page .cs-form-control.form-control::placeholder {
    color: #a3afbf;
    opacity: 1;
}

.cs-auth-page .cs-form-control.form-control:hover {
    border-color: #bdc9d8;
}

.cs-auth-page .cs-form-control.form-control:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.08);
}

.cs-auth-page .cs-form-control.form-control.is-invalid {
    border-color: #ef4444;
    background-image: none;
    box-shadow:
        0 0 0 3px rgba(239, 68, 68, 0.06);
}


/* ============================================================
   20. PASSWORD TOGGLE
============================================================ */

.cs-password-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.cs-password-toggle:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.cs-password-toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.16);
    outline-offset: 1px;
}


/* ============================================================
   21. PASSWORD HELP
============================================================ */

.cs-password-help {
    margin-top: 6px;
    color: #94a3b8;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.45;
}


/* ============================================================
   22. FIELD ERROR
============================================================ */

.cs-field-error {
    min-height: 0;
    margin-top: 5px;
    color: #dc2626;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.45;
}

.cs-field-error:empty {
    display: none;
}


/* ============================================================
   23. TERMS CHECKBOX ROW
============================================================ */

.cs-form-check-row {
    width: 100%;
    margin: 4px 0 20px;
}

.cs-form-check {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    cursor: pointer;
}

.cs-form-check > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cs-check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background: #ffffff;
    color: transparent;
    font-size: 8px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.cs-form-check > input:checked + .cs-check-box {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
}

.cs-form-check > input:focus-visible + .cs-check-box {
    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.12);
}

.cs-check-text {
    color: #64748b;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.6;
}

.cs-check-text a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.cs-check-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


/* ============================================================
   24. SUBMIT BUTTON
============================================================ */

.cs-auth-page .cs-auth-submit.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 49px;
    margin: 0;
    padding: 10px 18px;
    border: 1px solid #2563eb;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            #2563eb 0%,
            #0ea5e9 100%
        );
    color: #ffffff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.20);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.cs-auth-page .cs-auth-submit.btn:hover {
    transform: translateY(-1px);
    border-color: #1d4ed8;
    background:
        linear-gradient(
            135deg,
            #1d4ed8 0%,
            #0284c7 100%
        );
    color: #ffffff;
    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.26);
}

.cs-auth-page .cs-auth-submit.btn:active {
    transform: translateY(0);
}

.cs-auth-page .cs-auth-submit.btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}


/* ============================================================
   25. LOGIN / REGISTER SWITCH
============================================================ */

.cs-auth-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 18px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.cs-auth-switch a {
    color: #2563eb;
    font-weight: 750;
    text-decoration: none;
}

.cs-auth-switch a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


/* ============================================================
   26. SECURITY STRIP
============================================================ */

.cs-auth-security {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.cs-auth-security > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 8px;
    border: 1px solid #e8eef5;
    border-radius: 9px;
    background: #f8fafc;
    color: #64748b;
    font-size: 8px;
    font-weight: 650;
    line-height: 1.3;
    text-align: center;
}

.cs-auth-security > div i {
    color: #16a34a;
    font-size: 9px;
}


/* ============================================================
   27. REGISTRATION FEE / INFORMATION NOTE
============================================================ */

.cs-register-fee-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    margin-top: 13px;
    padding: 14px 15px;
    border: 1px solid #dbeafe;
    border-radius: 13px;
    background: rgba(239, 246, 255, 0.88);
}

.cs-register-fee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border-radius: 9px;
    background: #dbeafe;
    color: #2563eb;
    font-size: 11px;
}

.cs-register-fee-note > div:last-child {
    min-width: 0;
}

.cs-register-fee-note strong {
    display: block;
    margin: 0 0 4px;
    color: #1e3a8a;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.4;
}

.cs-register-fee-note p {
    margin: 0;
    color: #64748b;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.6;
}


/* ============================================================
   28. LOGIN PAGE COMPATIBILITY
============================================================ */

.cs-login-page .cs-auth-form-column {
    max-width: 500px;
}

.cs-login-page .cs-auth-title span {
    display: inline;
}


/* ============================================================
   29. FORGOT / RESET / VERIFY COMPATIBILITY
============================================================ */

.cs-forgot-page .cs-auth-form-column,
.cs-reset-page .cs-auth-form-column,
.cs-verify-page .cs-auth-form-column {
    max-width: 500px;
}


/* ============================================================
   30. AUTH LINK
============================================================ */

.cs-auth-link {
    color: #2563eb;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.cs-auth-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


/* ============================================================
   31. TWO COLUMN FORM ROW
============================================================ */

.cs-form-grid-2 {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px;
}


/* ============================================================
   32. GENERIC AUTH MESSAGE
============================================================ */

.cs-auth-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #f8fafc;
    color: #64748b;
    font-size: 9px;
    line-height: 1.6;
}

.cs-auth-message i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #2563eb;
}


/* ============================================================
   33. AUTH CENTER STATE
============================================================ */

.cs-auth-center-state {
    padding: 12px 0 4px;
    text-align: center;
}

.cs-auth-center-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 17px;
    border-radius: 18px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 22px;
}

.cs-auth-center-state h2 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.cs-auth-center-state p {
    max-width: 380px;
    margin: 9px auto 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.65;
}


/* ============================================================
   34. TABLET
============================================================ */

@media (max-width: 991.98px) {

    .cs-auth-section {
        padding: 55px 0 62px;
    }

    .cs-auth-layout {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(390px, 1fr);
        gap: 35px;
    }

    .cs-auth-title {
        font-size: clamp(36px, 5vw, 48px);
    }

    .cs-auth-benefits {
        grid-template-columns: 1fr;
    }

    .cs-auth-card {
        padding: 27px;
    }
}


/* ============================================================
   35. MOBILE / TABLET STACK
============================================================ */

@media (max-width: 767.98px) {

    .cs-auth-page {
        min-height: 0;
        overflow: hidden;
    }

    .cs-auth-section {
        padding: 38px 0 48px;
    }

    .cs-auth-layout {
        display: block;
        width: 100%;
    }

    .cs-auth-intro {
        width: 100%;
        margin-bottom: 32px;
    }

    .cs-auth-intro-inner {
        max-width: 100%;
    }

    .cs-auth-eyebrow {
        margin-bottom: 14px;
        padding: 7px 10px;
        font-size: 8px;
    }

    .cs-auth-title {
        max-width: 520px;
        font-size: clamp(32px, 8vw, 44px);
        line-height: 1.08;
    }

    .cs-auth-description {
        max-width: 560px;
        margin-top: 16px;
        font-size: 12px;
        line-height: 1.7;
    }

    .cs-auth-benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        max-width: 100%;
        margin-top: 23px;
    }

    .cs-auth-benefit {
        padding: 13px;
    }

    .cs-auth-trust-note {
        max-width: 100%;
    }

    .cs-auth-form-column {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .cs-auth-card {
        width: 100%;
        padding: 27px;
    }

    .cs-auth-page .cs-form-control.form-control {
        font-size: 16px;
    }
}


/* ============================================================
   36. SMALL MOBILE
============================================================ */

@media (max-width: 575.98px) {

    .cs-auth-section {
        padding: 28px 0 38px;
    }

    .cs-auth-intro {
        margin-bottom: 25px;
    }

    .cs-auth-title {
        font-size: 31px;
        letter-spacing: -0.045em;
    }

    .cs-auth-description {
        font-size: 11px;
    }

    .cs-auth-benefits {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 20px;
    }

    .cs-auth-benefit {
        align-items: center;
        min-height: 66px;
    }

    .cs-auth-benefit-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .cs-auth-benefit strong {
        font-size: 10px;
    }

    .cs-auth-benefit span {
        font-size: 8.5px;
    }

    .cs-auth-trust-note {
        margin-top: 12px;
    }

    .cs-auth-card {
        padding: 22px 18px;
        border-radius: 19px;
    }

    .cs-auth-card-header {
        gap: 11px;
        margin-bottom: 22px;
    }

    .cs-auth-card-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        border-radius: 12px;
    }

    .cs-auth-card-header h2 {
        font-size: 19px;
    }

    .cs-form-group {
        margin-bottom: 14px;
    }

    .cs-auth-page .cs-form-control.form-control {
        min-height: 48px;
        padding-left: 40px;
    }

    .cs-auth-security {
        gap: 6px;
    }

    .cs-register-fee-note {
        padding: 13px;
    }

    .cs-form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* ============================================================
   37. VERY SMALL MOBILE
============================================================ */

@media (max-width: 374.98px) {

    .cs-auth-section {
        padding-top: 23px;
    }

    .cs-auth-title {
        font-size: 28px;
    }

    .cs-auth-card {
        padding: 20px 15px;
        border-radius: 17px;
    }

    .cs-auth-card-header h2 {
        font-size: 18px;
    }

    .cs-auth-security {
        grid-template-columns: 1fr;
    }

    .cs-auth-page .cs-auth-submit.btn {
        min-height: 48px;
    }
}


/* ============================================================
   38. ACCESSIBILITY
============================================================ */

.cs-auth-page a:focus-visible,
.cs-auth-page button:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.25);
    outline-offset: 3px;
}

.cs-auth-page input:focus-visible {
    outline: none;
}


/* ============================================================
   39. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .cs-auth-page *,
    .cs-auth-page *::before,
    .cs-auth-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ============================================================
   40. PRINT
============================================================ */

@media print {

    .cs-auth-page {
        min-height: auto;
        background: #ffffff !important;
    }

    .cs-auth-page::before,
    .cs-auth-page::after {
        display: none !important;
    }

    .cs-auth-section {
        padding: 20px 0;
    }

    .cs-auth-layout {
        display: block;
    }

    .cs-auth-intro {
        display: none;
    }

    .cs-auth-form-column {
        max-width: 100%;
    }

    .cs-auth-card {
        border: 1px solid #cccccc;
        box-shadow: none;
    }

    .cs-auth-submit {
        display: none !important;
    }
}

/* ============================================================
   LOGIN OPTIONS - FINAL FIX
============================================================ */

.cs-login-options {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 2px !important;
    margin-bottom: 18px !important;
}


/* Remember Me */

.cs-login-remember {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    cursor: pointer;
    white-space: nowrap;
}

.cs-login-remember input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cs-login-remember .cs-check-box {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1.5px solid #cbd5e1 !important;
    border-radius: 5px !important;

    background: #ffffff !important;

    color: #ffffff !important;

    font-size: 9px !important;

    transition: all 0.2s ease;
}

.cs-login-remember .cs-check-box i {
    opacity: 0;
}

.cs-login-remember input:checked + .cs-check-box {
    background: #2563eb !important;
    border-color: #2563eb !important;
}

.cs-login-remember input:checked + .cs-check-box i {
    opacity: 1;
}

.cs-login-remember .cs-check-text {
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    color: #64748b !important;
}


/* ============================================================
   FORGOT PASSWORD - SMALL / BOLD / BLUE
============================================================ */

.cs-login-options .cs-forgot-password,
.cs-forgot-password {
    display: inline-flex !important;
    align-items: center !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    color: #2563eb !important;

    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    cursor: pointer;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.cs-login-options .cs-forgot-password:hover,
.cs-forgot-password:hover {
    color: #1d4ed8 !important;
    text-decoration: none !important;
}

.cs-login-options .cs-forgot-password:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.35);
    outline-offset: 4px;
    border-radius: 3px;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 575.98px) {

    .cs-login-options {
        gap: 10px !important;
    }

    .cs-login-remember .cs-check-text {
        font-size: 12px !important;
    }

    .cs-login-options .cs-forgot-password,
    .cs-forgot-password {
        font-size: 12px !important;
        font-weight: 700 !important;
    }
}


/* ============================================================
   END
============================================================ */