/*!
 * SDO Auth pages — aligned with landing dark/light tokens
 */

:root,
html[data-theme="light"] {
    --auth-bg: #f7f8fa;
    --auth-fg: #152033;
    --auth-muted: #5f6f82;
    --auth-border: rgba(21, 32, 51, 0.1);
    --auth-surface: #ffffff;
    --auth-surface-soft: #f3f5f7;
    --auth-card: #ffffff;
    --auth-primary: #1f7a8a;
    --auth-primary-hover: #186575;
    --auth-primary-soft: rgba(31, 122, 138, 0.08);
    --auth-link-bg: rgba(21, 32, 51, 0.03);
    --auth-shadow: 0 12px 32px -18px rgba(15, 23, 42, 0.28);
    --auth-radius: 1rem;
    --auth-input-shadow: none;
    --auth-danger-bg: #fef2f2;
    --auth-danger-fg: #b91c1c;
    --auth-danger-bd: #fecaca;
    --auth-success-bg: #f0fdf4;
    --auth-success-fg: #15803d;
    --auth-success-bd: #bbf7d0;
    --auth-info-bg: rgba(31, 122, 138, 0.06);
    --auth-info-fg: #1f7a8a;
    --auth-info-bd: rgba(31, 122, 138, 0.18);
    --auth-placeholder: #94a3b8;
    --auth-panel: linear-gradient(160deg, #1a2a38 0%, #243447 55%, #1f7a8a 140%);
    --auth-mobile-top: #1a2a38;
    --auth-wave-1: rgba(247, 248, 250, 0.55);
    --auth-wave-2: rgba(247, 248, 250, 0.7);
    --auth-wave-3: rgba(247, 248, 250, 0.85);
    --auth-wave-4: #f7f8fa;
    --auth-logo-plate: transparent;
    --auth-logo-filter: brightness(0);
    --auth-logo-opacity: 0.88;
    --auth-font: "Vazirmatn", "IRANSans", ui-sans-serif, system-ui, sans-serif;
}

html.dark,
html[data-theme="dark"] {
    --auth-bg: #030712;
    --auth-fg: #e8eef4;
    --auth-muted: #8b9aab;
    --auth-border: rgba(148, 163, 184, 0.14);
    --auth-surface: #030712;
    --auth-surface-soft: rgba(255, 255, 255, 0.04);
    --auth-card: rgba(15, 23, 42, 0.72);
    --auth-primary: #2f8fa0;
    --auth-primary-hover: #3aa0b2;
    --auth-primary-soft: rgba(47, 143, 160, 0.12);
    --auth-link-bg: rgba(255, 255, 255, 0.03);
    --auth-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.55);
    --auth-input-shadow: none;
    --auth-danger-bg: rgba(127, 29, 29, 0.35);
    --auth-danger-fg: #fecaca;
    --auth-danger-bd: rgba(248, 113, 113, 0.28);
    --auth-success-bg: rgba(20, 83, 45, 0.35);
    --auth-success-fg: #86efac;
    --auth-success-bd: rgba(74, 222, 128, 0.25);
    --auth-info-bg: rgba(47, 143, 160, 0.1);
    --auth-info-fg: #5bb8c9;
    --auth-info-bd: rgba(91, 184, 201, 0.22);
    --auth-placeholder: #64748b;
    --auth-panel: linear-gradient(160deg, #0b1220 0%, #111827 50%, #16303a 100%);
    --auth-mobile-top: #0b1220;
    --auth-wave-1: rgba(3, 7, 18, 0.45);
    --auth-wave-2: rgba(3, 7, 18, 0.65);
    --auth-wave-3: rgba(3, 7, 18, 0.82);
    --auth-wave-4: #030712;
    --auth-logo-plate: #f8fafc;
    --auth-logo-filter: none;
    --auth-logo-opacity: 0.95;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--auth-font);
    background: var(--auth-bg);
    color: var(--auth-fg);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.auth-page {
    min-height: 100dvh;
    position: relative;
    overflow-x: hidden;
    background: var(--auth-bg);
    color: var(--auth-fg);
    font-family: var(--auth-font);
    transition: background 0.25s ease, color 0.25s ease;
}

.auth-page *,
.auth-page *::before,
.auth-page *::after {
    box-sizing: border-box;
}

.auth-page__row {
    min-height: 100dvh;
}

/* ---- Form column ---- */
.auth-form-col {
    background: var(--auth-bg);
    display: flex;
    align-items: stretch;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.25s ease;
}

.auth-form-panel {
    width: 100%;
    max-width: 420px;
    padding: 1.25rem 1.1rem calc(1.1rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.75rem;
    width: 100%;
}

.auth-toolbar .sdo-theme-toggle--auth {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: max-content;
    z-index: 2;
}

.auth-brand {
    text-align: center;
    margin-bottom: 1.15rem;
}

.auth-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.65rem;
    border-radius: 0.65rem;
    line-height: 0;
    background: var(--auth-logo-plate);
    box-shadow: 0 0 0 1px color-mix(in srgb, #fff 10%, transparent);
}

html[data-theme="light"] .auth-brand__logo,
html:not(.dark):not([data-theme="dark"]) .auth-brand__logo {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.auth-brand__logo img {
    display: block;
    height: 2rem;
    width: auto;
    max-width: 7.5rem;
    object-fit: contain;
    filter: var(--auth-logo-filter);
    opacity: var(--auth-logo-opacity);
}

.auth-brand__subtitle {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--auth-muted) !important;
}

.auth-card {
    background: var(--auth-card);
    border: 1px solid var(--auth-border);
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: var(--auth-radius);
    box-shadow: var(--auth-shadow);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* ---- Wave panel (desktop) ---- */
.auth-wave-col {
    display: none;
}

.auth-wave-panel.header {
    position: relative;
    text-align: center;
    background: var(--auth-panel);
    color: #e8eef4;
    height: 100%;
    min-height: 100dvh;
    border-start-start-radius: 4.5rem;
    overflow: hidden;
    transition: background 0.3s ease;
}

.auth-wave-panel .inner-header {
    height: calc(100dvh - 120px);
    min-height: 320px;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wave-panel__tagline {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 0.85rem;
    color: #e8eef4;
}

.auth-wave-panel__gifs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-wave-panel__gifs img {
    width: 88px;
    height: auto;
    opacity: 0.95;
    /* Panel is always dark — make black line art light */
    filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.05)
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

html[data-theme="light"] .auth-wave-panel__gifs img {
    filter: invert(1) hue-rotate(180deg) brightness(1.15) contrast(1.05)
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 80px;
    max-height: 150px;
    bottom: 0;
    left: 0;
    margin-bottom: -1px;
}

.auth-waves .auth-wave {
    transition: fill 0.3s ease;
}

.auth-waves .auth-wave--1 { fill: var(--auth-wave-1); }
.auth-waves .auth-wave--2 { fill: var(--auth-wave-2); }
.auth-waves .auth-wave--3 { fill: var(--auth-wave-3); }
.auth-waves .auth-wave--4 { fill: var(--auth-wave-4); }

.parallax > use {
    animation: auth-move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes auth-move-forever {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

.auth-mobile-wave {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: var(--auth-panel);
    z-index: 0;
    pointer-events: none;
    transition: background 0.3s ease;
}

.auth-mobile-wave .waves {
    position: absolute;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
}

/* ---- Alerts ---- */
.auth-alert {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.75rem 0.9rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.auth-alert--danger {
    background: var(--auth-danger-bg);
    color: var(--auth-danger-fg);
    border: 1px solid var(--auth-danger-bd);
}

.auth-alert--success {
    background: var(--auth-success-bg);
    color: var(--auth-success-fg);
    border: 1px solid var(--auth-success-bd);
}

.auth-alert--info,
.auth-alert--warning {
    background: var(--auth-info-bg);
    color: var(--auth-info-fg);
    border: 1px solid var(--auth-info-bd);
}

/* ---- Inputs ---- */
.auth-card,
.auth-form-panel {
    direction: rtl;
    text-align: right;
}

.auth-field {
    margin-bottom: 1rem;
    direction: rtl;
    text-align: right;
}

.auth-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--auth-fg) !important;
    text-align: right;
    width: 100%;
}

.auth-hint {
    margin: -0.4rem 0 0.9rem;
    font-size: 0.8rem;
    color: var(--auth-muted);
    line-height: 1.6;
    text-align: right;
}

.auth-input-shell {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3.25rem;
    padding: 0.35rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--auth-border);
    background: var(--auth-surface-soft);
    box-shadow: var(--auth-input-shadow);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
    direction: rtl;
}

.auth-input-shell:focus-within {
    border-color: color-mix(in srgb, var(--auth-primary) 55%, transparent);
    box-shadow: 0 0 0 3px var(--auth-primary-soft);
    background: color-mix(in srgb, var(--auth-card) 90%, transparent);
}

.auth-input-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.55rem;
    background: var(--auth-primary-soft);
    color: var(--auth-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: none;
}

.auth-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--auth-fg) !important;
    padding: 0.45rem 0.2rem;
    outline: none;
    box-shadow: none;
    font-family: inherit;
}

.auth-input::placeholder {
    color: var(--auth-placeholder) !important;
    font-weight: 400;
    opacity: 1;
}

.auth-field--ltr .auth-input {
    direction: ltr;
    text-align: left;
    letter-spacing: 0.03em;
}

.auth-field--ltr .auth-input-shell {
    direction: ltr;
    flex-direction: row;
}

.auth-input-toggle {
    border: 0;
    background: transparent;
    color: var(--auth-muted);
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s ease, background 0.15s ease;
}

.auth-input-toggle:hover,
.auth-input-toggle:focus {
    color: var(--auth-primary);
    background: var(--auth-primary-soft);
    outline: none;
}

.auth-input-shell--password .auth-input {
    text-align: left;
    direction: ltr;
}

.auth-field .form-control,
.auth-field textarea.form-control {
    min-height: 3.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--auth-border);
    background: var(--auth-surface-soft);
    font-size: 0.95rem;
    padding: 0.7rem 0.85rem;
    color: var(--auth-fg);
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
    direction: rtl;
    text-align: right;
    font-family: inherit;
    width: 100%;
}

.auth-field textarea.form-control {
    min-height: 5.5rem;
    resize: vertical;
}

.auth-field .form-control:focus,
.auth-field textarea.form-control:focus {
    border-color: color-mix(in srgb, var(--auth-primary) 55%, transparent);
    background: color-mix(in srgb, var(--auth-card) 90%, transparent);
    color: var(--auth-fg);
    box-shadow: 0 0 0 3px var(--auth-primary-soft);
    outline: none;
}

.auth-input-shell--otp {
    justify-content: center;
    padding: 0.55rem 1rem;
}

.auth-input-shell--otp .auth-input-icon {
    background: var(--auth-primary-soft);
    color: var(--auth-primary);
}

.auth-otp-input {
    letter-spacing: 0.4em;
    text-align: center;
    font-size: 1.35rem !important;
    font-weight: 700;
}

.auth-section-title {
    margin: 0.15rem 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--auth-muted);
    text-align: right;
    letter-spacing: 0.02em;
}

.auth-section-divider {
    border: 0;
    border-top: 1px solid var(--auth-border);
    margin: 1.1rem 0;
}

.auth-form-grid--names {
    display: grid;
    gap: 0;
}

.auth-submit {
    width: 100%;
    min-height: 3.1rem;
    border: 0;
    border-radius: 0.75rem;
    background: var(--auth-primary);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.15s ease;
    cursor: pointer;
}

.auth-submit:hover,
.auth-submit:focus {
    background: var(--auth-primary-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

.auth-links {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.auth-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.65rem;
    padding: 0.6rem 0.85rem;
    border-radius: 0.7rem;
    border: 1px solid var(--auth-border);
    background: var(--auth-link-bg);
    color: var(--auth-fg) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.auth-link:hover {
    background: var(--auth-primary-soft);
    border-color: color-mix(in srgb, var(--auth-primary) 28%, transparent);
    color: var(--auth-primary) !important;
}

.auth-link i {
    color: var(--auth-muted);
}

.auth-link:hover i {
    color: var(--auth-primary);
}

.auth-link--primary {
    background: var(--auth-primary-soft);
    border-color: color-mix(in srgb, var(--auth-primary) 22%, transparent);
}

.auth-link-btn {
    width: 100%;
    border: 1px solid var(--auth-border);
    background: var(--auth-link-bg);
    color: var(--auth-fg);
    min-height: 2.65rem;
    border-radius: 0.7rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: inherit;
}

.auth-legal {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--auth-muted);
}

.auth-legal a {
    color: var(--auth-muted) !important;
    text-decoration: none;
}

.auth-legal a:hover {
    color: var(--auth-primary) !important;
}

.auth-back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--auth-muted) !important;
    text-decoration: none !important;
}

.auth-back-home:hover {
    color: var(--auth-primary) !important;
}

/* ---- Mobile ---- */
@media (max-width: 991.98px) {
    .auth-page {
        background:
            linear-gradient(180deg, var(--auth-mobile-top) 0%, var(--auth-mobile-top) 7.5rem, var(--auth-bg) 7.5rem);
    }

    .auth-form-col {
        background: transparent;
    }

    .auth-form-panel {
        padding-top: 1rem;
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
    }

    .auth-toolbar {
        margin-bottom: 0.5rem;
    }

    .auth-toolbar .sdo-theme-toggle--auth {
        color: #e8eef4;
    }

    .auth-toolbar .sdo-theme-toggle--auth .sdo-theme-toggle__track {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .auth-toolbar .sdo-theme-toggle--auth .sdo-theme-toggle__thumb {
        background: #f8fafc;
    }

    .auth-toolbar .sdo-theme-toggle--auth .sdo-theme-toggle__glyph--sun {
        color: #d4a017;
    }

    .auth-toolbar .sdo-theme-toggle--auth .sdo-theme-toggle__glyph--moon {
        color: #cbd5e1;
    }

    .auth-brand {
        margin-bottom: 1.25rem;
    }

    /* Dark header strip: always show light plate under dark logo */
    .auth-brand__logo,
    html[data-theme="light"] .auth-brand__logo,
    html[data-theme="dark"] .auth-brand__logo,
    html.dark .auth-brand__logo {
        background: #f8fafc !important;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
        padding: 0.45rem 0.7rem !important;
        border-radius: 0.65rem;
    }

    .auth-brand__logo img,
    html[data-theme="light"] .auth-brand__logo img,
    html[data-theme="dark"] .auth-brand__logo img,
    html.dark .auth-brand__logo img {
        filter: brightness(0) !important;
        opacity: 0.9 !important;
    }

    .auth-brand__subtitle {
        color: rgba(232, 238, 244, 0.85) !important;
    }

    .auth-card {
        border-radius: var(--auth-radius);
        box-shadow: var(--auth-shadow);
        padding: 1.5rem 1.15rem 1.25rem;
        background: var(--auth-card);
    }
}

/* ---- Desktop ---- */
@media (min-width: 992px) {
    html:has(.auth-page),
    body:has(.auth-page) {
        height: 100%;
        overflow: hidden;
    }

    .auth-page {
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .auth-page__row {
        height: 100dvh;
        max-height: 100dvh;
        flex-wrap: nowrap;
    }

    .auth-form-col {
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .auth-form-panel {
        height: 100%;
        max-height: 100dvh;
        padding: 1.25rem 1.75rem 1rem;
        justify-content: center;
        overflow: hidden;
    }

    .auth-card {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .auth-wave-col {
        display: block;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .auth-wave-panel.header {
        min-height: 100%;
        height: 100%;
    }

    .auth-mobile-wave {
        display: none;
    }

    .auth-page--signup .auth-form-col {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .auth-page--signup .auth-wave-col {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .auth-page--signup .auth-form-panel {
        max-width: 560px;
        padding: 1rem 1.5rem 0.75rem;
        overflow-y: auto;
    }

    .auth-page--signup .auth-brand {
        margin-bottom: 0.65rem;
    }

    .auth-page--signup .auth-brand__logo img {
        height: 1.75rem;
    }

    .auth-page--signup .auth-brand__subtitle {
        font-size: 0.82rem;
        margin-top: 0.15rem;
    }

    .auth-page--signup .auth-field {
        margin-bottom: 0.65rem;
    }

    .auth-page--signup .auth-field label {
        margin-bottom: 0.3rem;
        font-size: 0.8rem;
    }

    .auth-page--signup .auth-input-shell {
        min-height: 2.75rem;
        padding: 0.25rem 0.65rem;
        border-radius: 0.65rem;
    }

    .auth-page--signup .auth-input-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
        border-radius: 0.45rem;
    }

    .auth-page--signup .auth-input {
        font-size: 0.9rem;
        padding: 0.35rem 0.2rem;
    }

    .auth-page--signup .auth-field .form-control,
    .auth-page--signup .auth-field textarea.form-control {
        min-height: 2.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 0.65rem;
    }

    .auth-page--signup .auth-field textarea.form-control {
        min-height: 2.75rem;
        max-height: 3.5rem;
    }

    .auth-page--signup .auth-form-grid--names {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .auth-page--signup .auth-form-grid--names .auth-field {
        margin-bottom: 0;
    }

    .auth-page--signup .auth-section-title {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }

    .auth-page--signup .auth-section-divider {
        margin: 0.75rem 0;
    }

    .auth-page--signup .auth-alert {
        padding: 0.55rem 0.75rem;
        margin-bottom: 0.65rem;
        font-size: 0.8rem;
    }

    .auth-page--signup .auth-submit {
        min-height: 2.75rem;
        font-size: 0.9rem;
    }

    .auth-page--signup .auth-links {
        margin-top: 0.75rem;
    }

    .auth-page--signup .auth-link {
        min-height: 2.4rem;
        font-size: 0.82rem;
    }

    .auth-page--signup .auth-legal {
        margin-top: 0.65rem;
        font-size: 0.72rem;
    }
}

@media (min-width: 992px) and (max-height: 760px) {
    .auth-page--signup .auth-form-panel {
        justify-content: flex-start;
        padding-top: 0.75rem;
    }
}

/* Theme toggle lives in .auth-toolbar */

/* Force readable text over vendor overrides */
.auth-page label,
.auth-page .auth-field label {
    color: var(--auth-fg) !important;
}

.auth-page .auth-hint,
.auth-page .auth-legal,
.auth-page .auth-legal a,
.auth-page .auth-brand__subtitle,
.auth-page p {
    color: var(--auth-muted) !important;
}

.auth-page .auth-input,
.auth-page .auth-field .form-control {
    color: var(--auth-fg) !important;
}

.auth-page .auth-link,
.auth-page .auth-link-btn {
    color: var(--auth-fg) !important;
}

.auth-page .auth-link:hover {
    color: var(--auth-primary) !important;
}

.auth-page .text-danger {
    color: var(--auth-danger-fg) !important;
}
