/* ════════════════════════════════════════════════════════
   AUTH LAYOUT — Warm glassmorphism split-screen
   ════════════════════════════════════════════════════════ */

/* ── Page Shell ───────────────────────────────────────── */
.auth-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    font-family: var(--fw-bo-font-sans);
    background-color: var(--fw-bo-bg, #0c0a09);
    color: var(--fw-bo-text-primary, #fafaf9);
    line-height: var(--fw-bo-leading-normal);
}

.auth-layout__container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 1024px) {
    .auth-layout__container {
        flex-direction: row;
    }
}

/* ── Ambient Glow Orbs ────────────────────────────────── */
.auth-ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: auth-float 6s ease-in-out infinite;
}

.auth-ambient-glow--primary {
    width: 24rem;
    height: 24rem;
    background: rgba(249, 115, 22, 0.3);
    top: -5rem;
    left: -5rem;
}

.auth-ambient-glow--secondary {
    width: 20rem;
    height: 20rem;
    background: rgba(251, 191, 36, 0.2);
    bottom: 0;
    right: 0;
    animation-delay: -3s;
}

@keyframes auth-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ── Left Panel: Branding ─────────────────────────────── */
.auth-panel-branding {
    display: none;
    position: relative;
    overflow: hidden;
    background-color: var(--fw-bo-bg-alt, #1c1917);
    background-image:
        radial-gradient(circle at 20% 50%, var(--fw-bo-orange-subtle) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.03) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 100% 100%, 100% 100%, 40px 40px;
}

@media (min-width: 1024px) {
    .auth-panel-branding {
        display: flex;
        width: 50%;
        flex-direction: column;
        justify-content: space-between;
        padding: 4rem;
    }
}

@media (min-width: 1280px) {
    .auth-panel-branding {
        width: 41.666667%;
    }
}

/* ── Right Panel: Login ───────────────────────────────── */
.auth-panel-login {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--fw-bo-bg, #0c0a09);
    position: relative;
}

@media (min-width: 640px) {
    .auth-panel-login {
        padding: 3rem;
    }
}

/* ── Logo ─────────────────────────────────────────────── */
.auth-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-logo__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--fw-bo-orange) 0%, #fbbf24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
    flex-shrink: 0;
}

.auth-logo__icon span {
    color: white;
    font-family: var(--fw-bo-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.auth-logo__text {
    font-family: var(--fw-bo-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fw-bo-text-primary, #fafaf9);
    line-height: var(--fw-bo-leading-none);
}

.auth-logo__subtext {
    font-size: 0.75rem;
    color: var(--fw-bo-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ── Headline ─────────────────────────────────────────── */
.auth-headline {
    font-family: var(--fw-bo-font-sans);
    font-size: clamp(var(--fw-bo-text-2xl), 5vw, 3rem);
    font-weight: 700;
    letter-spacing: var(--fw-bo-tracking-tight);
    line-height: 1.1;
    color: var(--fw-bo-text-primary, #fafaf9);
    margin-bottom: 1.5rem;
}

@media (min-width: 1280px) {
    .auth-headline {
        font-size: 3.75rem;
    }
}

.auth-headline__accent {
    background: linear-gradient(135deg, var(--fw-bo-orange) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-text-body {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--fw-bo-text-secondary, #e7e5e4);
    max-width: 28rem;
}

/* ── Feature Tags ─────────────────────────────────────── */
.auth-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.auth-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--fw-bo-overlay-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fw-bo-glass-border);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fw-bo-text-secondary, #e7e5e4);
}

.auth-feature-tag__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: var(--fw-bo-orange);
    animation: auth-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.auth-feature-tag__dot--success { background-color: var(--fw-bo-success); }
.auth-feature-tag__dot--warning { background-color: var(--fw-bo-warning); animation-delay: 0.5s; }

@keyframes auth-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Decorative Divider ───────────────────────────────── */
.auth-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--fw-bo-orange), transparent);
    width: 8rem;
    margin: 1.5rem 0;
    opacity: 0.5;
}

/* ── Glass Card ───────────────────────────────────────── */
.auth-glass-card {
    background: rgba(41, 37, 36, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fw-bo-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), inset 0 1px 0 0 var(--fw-bo-overlay-light);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 28rem;
    transition: all 0.3s ease;
    animation: auth-card-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

@media (min-width: 640px) {
    .auth-glass-card {
        padding: 3rem;
    }
}

@keyframes auth-card-reveal {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Form Elements ────────────────────────────────────── */
.auth-form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-form-title {
    font-family: var(--fw-bo-font-sans);
    font-size: var(--fw-bo-text-2xl);
    font-weight: 700;
    letter-spacing: var(--fw-bo-tracking-tight);
    color: var(--fw-bo-text-primary, #fafaf9);
    margin-bottom: 0.5rem;
}

.auth-form-subtitle {
    font-size: var(--fw-bo-text-md);
    letter-spacing: var(--fw-bo-tracking-normal);
    color: var(--fw-bo-text-dim, #78716c);
}

.auth-form-group {
    margin-bottom: 1.5rem;
}

.auth-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fw-bo-text-dim, #78716c);
    margin-bottom: 0.5rem;
}

[dir="rtl"] .auth-form-label {
    text-align: right;
}

/* ── Input ────────────────────────────────────────────── */
.auth-input-group {
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background-color: rgba(12, 10, 9, 0.6);
    border: 1px solid var(--fw-bo-glass-border);
    border-radius: 0.75rem;
    color: var(--fw-bo-text-primary, #fafaf9);
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.auth-input:focus {
    outline: none;
    border-color: var(--fw-bo-orange);
    box-shadow: 0 0 0 3px var(--fw-bo-orange-subtle), 0 0 20px rgba(249, 115, 22, 0.3);
}

.auth-input::placeholder {
    color: var(--fw-bo-text-dim, #78716c);
}

[dir="rtl"] .auth-input {
    padding-left: 1rem;
    padding-right: 2.5rem;
}

.auth-input--with-action {
    padding-right: 2.5rem;
}

[dir="rtl"] .auth-input--with-action {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

.auth-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--fw-bo-text-dim, #78716c);
    pointer-events: none;
}

[dir="rtl"] .auth-input-icon {
    left: auto;
    right: 0.75rem;
}

.auth-input-action {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--fw-bo-text-dim, #78716c);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
}

.auth-input-action:hover {
    color: var(--fw-bo-orange);
}

[dir="rtl"] .auth-input-action {
    right: auto;
    left: 0.75rem;
}

/* ── Error Alert ──────────────────────────────────────── */
.auth-error-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.75rem;
    color: #fca5a5;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* ── Toggle Switch ────────────────────────────────────── */
.auth-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

[dir="rtl"] .auth-toggle {
    flex-direction: row-reverse;
}

.auth-toggle__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.auth-toggle__slider {
    position: relative;
    width: 2.5rem;
    height: 1.5rem;
    background-color: var(--fw-bo-glass-border);
    border-radius: 9999px;
    transition: background-color 0.3s ease;
    border: 1px solid var(--fw-bo-glass-border);
    flex-shrink: 0;
}

.auth-toggle__slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1.25rem;
    height: 1.25rem;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

[dir="rtl"] .auth-toggle__slider::after {
    left: auto;
    right: 2px;
}

.auth-toggle__input:checked + .auth-toggle__slider {
    background-color: var(--fw-bo-orange);
    border-color: var(--fw-bo-orange);
}

.auth-toggle__input:checked + .auth-toggle__slider::after {
    transform: translateX(1rem);
}

[dir="rtl"] .auth-toggle__input:checked + .auth-toggle__slider::after {
    transform: translateX(-1rem);
}

.auth-toggle__label {
    font-size: 0.875rem;
    color: var(--fw-bo-text-secondary, #e7e5e4);
    user-select: none;
}

/* ── Form Options Row ─────────────────────────────────── */
.auth-form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

[dir="rtl"] .auth-form-options {
    flex-direction: row-reverse;
}

.auth-link {
    color: var(--fw-bo-orange);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.15s ease;
}

.auth-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ── Submit Button ────────────────────────────────────── */
.auth-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--fw-bo-orange) 0%, var(--fw-bo-orange-dark) 100%);
    color: white;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.5);
}

.auth-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.auth-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Shimmer sweep */
.auth-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--fw-bo-glass-border) 50%, transparent 100%);
    animation: auth-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auth-shimmer {
    0%   { left: -100%; }
    40%  { left: 100%; }
    100% { left: 100%; }
}

/* ── Spinner ──────────────────────────────────────────── */
.auth-spinner {
    animation: auth-spin 1s linear infinite;
}

@keyframes auth-spin {
    to { transform: rotate(360deg); }
}

/* ── Security Note ────────────────────────────────────── */
.auth-security-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--fw-bo-overlay-medium);
    font-size: 0.75rem;
    color: var(--fw-bo-text-dim, #78716c);
}

[dir="rtl"] .auth-security-note {
    flex-direction: row-reverse;
    text-align: right;
}

.auth-icon-success {
    color: var(--fw-bo-success);
    flex-shrink: 0;
}

/* ── Floating Controls ────────────────────────────────── */
.auth-floating-controls {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    display: flex;
    gap: 0.5rem;
}

[dir="rtl"] .auth-floating-controls {
    right: auto;
    left: 1rem;
}

.auth-control-group {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(41, 37, 36, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fw-bo-glass-border);
    border-radius: 9999px;
    padding: 0.25rem;
}

.auth-control-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: var(--fw-bo-text-dim, #78716c);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.auth-control-btn:hover {
    background: var(--fw-bo-orange-subtle);
    color: var(--fw-bo-orange);
    transform: scale(1.1);
}

.auth-control-btn--active {
    background: var(--fw-bo-orange);
    color: white;
}

.auth-control-btn--active:hover {
    background: var(--fw-bo-orange);
    color: white;
}

.auth-lang-btn {
    padding: 0 0.75rem;
    height: 2rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: var(--fw-bo-text-dim, #78716c);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.15s ease;
}

.auth-lang-btn--active {
    color: var(--fw-bo-orange);
    font-weight: 700;
}

.auth-lang-btn:hover:not(.auth-lang-btn--active) {
    color: var(--fw-bo-text-primary, #fafaf9);
}

/* ── Mobile Header ────────────────────────────────────── */
.auth-mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .auth-mobile-header {
        display: none;
    }
}

/* ── Desktop-only ─────────────────────────────────────── */
@media (max-width: 1023px) {
    .auth-desktop-only {
        display: none !important;
    }
}

/* ── Footer ───────────────────────────────────────────── */
.auth-footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--fw-bo-text-dim, #78716c);
    width: 100%;
}

@media (min-width: 1024px) {
    .auth-footer--mobile {
        display: none;
    }
}

.auth-text-small {
    font-size: 0.875rem;
    color: var(--fw-bo-text-dim, #78716c);
}

/* ── Icon size helper ─────────────────────────────────── */
.auth-icon-20 {
    width: 1.25rem;
    height: 1.25rem;
}


/* ════════════════════════════════════════════════════════
   LIGHT MODE OVERRIDES
   ════════════════════════════════════════════════════════ */

html:not([data-theme="dark"]) .auth-layout {
    background-color: #ffffff;
    color: #0f172a;
}

html:not([data-theme="dark"]) .auth-panel-branding {
    background-color: #1e293b;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99, 179, 237, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(148, 163, 184, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.02) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 100% 100%, 100% 100%, 40px 40px;
}

/* Force light text on branding panel — stays dark in light mode */
html:not([data-theme="dark"]) .auth-panel-branding .auth-headline,
html:not([data-theme="dark"]) .auth-panel-branding .auth-text-body,
html:not([data-theme="dark"]) .auth-panel-branding .auth-logo__text,
html:not([data-theme="dark"]) .auth-panel-branding .auth-feature-tag {
    color: #e2e8f0;
}

html:not([data-theme="dark"]) .auth-panel-branding .auth-feature-tag {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

html:not([data-theme="dark"]) .auth-panel-branding .auth-divider {
    background: linear-gradient(to right, transparent, rgba(99, 179, 237, 0.5), transparent);
}

html:not([data-theme="dark"]) .auth-panel-login {
    background-color: #ffffff;
}

/* Form text — dark on white panel */
html:not([data-theme="dark"]) .auth-panel-login .auth-form-title {
    color: #0f172a;
}

html:not([data-theme="dark"]) .auth-panel-login .auth-form-subtitle {
    color: #64748b;
}

html:not([data-theme="dark"]) .auth-panel-login .auth-form-label {
    color: #475569;
}

html:not([data-theme="dark"]) .auth-panel-login .auth-toggle__label {
    color: #334155;
}

html:not([data-theme="dark"]) .auth-panel-login .auth-text-small,
html:not([data-theme="dark"]) .auth-panel-login .auth-security-note,
html:not([data-theme="dark"]) .auth-panel-login .auth-footer {
    color: #94a3b8;
}

/* Mobile header logo text (shown below 1024px, outside panels) */
html:not([data-theme="dark"]) .auth-mobile-header .auth-logo__text {
    color: #0f172a;
}

/* ── Glass Card — warm white ── */
html:not([data-theme="dark"]) .auth-glass-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
}

/* ── Inputs ── */
html:not([data-theme="dark"]) .auth-input {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1c1917;
}

html:not([data-theme="dark"]) .auth-input:focus {
    border-color: var(--fw-bo-orange-dark);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1), 0 0 20px rgba(234, 88, 12, 0.08);
}

html:not([data-theme="dark"]) .auth-input::placeholder {
    color: #a8a29e;
}

/* ── Floating Control Groups ── */
html:not([data-theme="dark"]) .auth-control-group {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

html:not([data-theme="dark"]) .auth-control-btn {
    color: #78716c;
}

html:not([data-theme="dark"]) .auth-control-btn:hover {
    background: rgba(234, 88, 12, 0.08);
    color: #c2410c;
}

html:not([data-theme="dark"]) .auth-control-btn--active {
    background: var(--fw-bo-orange-dark);
    color: white;
}

html:not([data-theme="dark"]) .auth-control-btn--active:hover {
    background: var(--fw-bo-orange-dark);
    color: white;
}

html:not([data-theme="dark"]) .auth-lang-btn {
    color: #78716c;
}

html:not([data-theme="dark"]) .auth-lang-btn--active {
    color: #c2410c;
}

html:not([data-theme="dark"]) .auth-lang-btn:hover:not(.auth-lang-btn--active) {
    color: #1c1917;
}

/* ── Feature Tags ── */
html:not([data-theme="dark"]) .auth-feature-tag {
    background: var(--fw-bo-glass-border);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ── Toggle Switch ── */
html:not([data-theme="dark"]) .auth-toggle__slider {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

html:not([data-theme="dark"]) .auth-toggle__input:checked + .auth-toggle__slider {
    background-color: var(--fw-bo-orange-dark);
    border-color: var(--fw-bo-orange-dark);
}

/* ── Error Alert ── */
html:not([data-theme="dark"]) .auth-error-alert {
    background: rgba(220, 38, 38, 0.06);
    border-color: rgba(220, 38, 38, 0.15);
    color: #b91c1c;
}

/* ── Security Note ── */
html:not([data-theme="dark"]) .auth-security-note {
    border-top-color: rgba(0, 0, 0, 0.06);
}

html:not([data-theme="dark"]) .auth-icon-success {
    color: #059669;
}

/* ── Link ── */
html:not([data-theme="dark"]) .auth-link {
    color: #c2410c;
}

/* ── Submit Button ── */
html:not([data-theme="dark"]) .auth-btn-primary {
    background: linear-gradient(135deg, var(--fw-bo-orange-dark) 0%, #c2410c 100%);
    box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.35);
}

html:not([data-theme="dark"]) .auth-btn-primary:hover:not(:disabled) {
    box-shadow: 0 15px 30px -5px rgba(234, 88, 12, 0.45);
}

/* ── Ambient Glow (subtler on light) ── */
html:not([data-theme="dark"]) .auth-ambient-glow {
    opacity: 0.06;
}

/* ── Logo subtext ── */
html:not([data-theme="dark"]) .auth-logo__subtext {
    color: var(--fw-bo-orange-dark);
}

/* ── Input Action (eye icon) ── */
html:not([data-theme="dark"]) .auth-input-action:hover {
    color: #c2410c;
}
