/* ==============================================
   FINDFYRE — Login Page
   Split layout: left collage / right form
   Matches the create-post design language:
   glass cards, fyreglobalstyle.css tokens,
   pink gradient CTAs, ambient page background.

   This page is ALWAYS dark — no light mode here.
   Layout is locked to the viewport: the fixed
   56px topbar is offset with padding, total
   height is exactly 100vh, no page scroll.
   ============================================== */

/* ── Page background + no scroll on this page ── */
/* Solid dark background — matches the rest of the site (theme.css --ff-bg),
   no gradients, so the login section blends straight into it. */
body:has(.ff-login-page) {
    background: #0d0d14;
    overflow: hidden;
}

/* Hide the floating reCAPTCHA badge — attribution text is shown in the legal copy instead */
body:has(.ff-login-page) .grecaptcha-badge {
    visibility: hidden !important;
}

/* ── Outer shell — exactly one viewport tall, below the fixed 56px topbar ── */
.ff-login-page {
    display: flex;
    height: 100vh;
    height: 100dvh;
    padding-top: 56px;
    width: 100%;
    overflow: hidden;
    align-items: stretch;
    box-sizing: border-box;
    position: relative;
    font-family: var(--font-family-base, "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif);
    background: #0d0d14;
}

/* ── LEFT: full-bleed photo collage ── */
.ff-login-collage {
    flex: 0 0 60%;
    max-width: 60%;
    align-self: stretch;
    position: relative;
    overflow: hidden;
    background: #0d0d14;
}

    /* Photo layer — dark, moody & desaturated a touch so overlays + logo read on top */
    .ff-login-collage::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: url('/assets/images/fyrecollage-main2.png') center center / cover no-repeat;
        filter: brightness(0.44) saturate(1.10) contrast(1.06);
    }

    /* Neon wash — deep magenta/violet duotone, strong bottom up-glow, dark & moody
       (matches the "after dark" reference: darker photos, heavier neon lighting) */
    .ff-login-collage::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            linear-gradient(90deg, transparent 60%, rgba(10, 8, 16, 0.96) 100%),
            radial-gradient(46% 80% at 103% 50%, rgba(255, 60, 170, 0.16), transparent 55%),
            radial-gradient(85% 50% at 40% 123%, rgba(255, 44, 150, 0.24), transparent 62%),
            radial-gradient(125% 100% at 50% 32%, transparent 45%, rgba(8, 4, 16, 0.58) 100%),
            linear-gradient(rgba(13, 6, 22, 0.36), rgba(13, 6, 22, 0.36));
    }

/* ── Neon seam — flowing login-pink line between collage and form ── */
.ff-login-seam {
    position: absolute;
    top: 56px;
    bottom: 0;
    left: 60%;
    width: 8px;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

/* Glass tube — clips the liquid */
.ff-seam-tube {
    position: absolute;
    inset: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 999px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

    /* Slow traveling gleam — like a drop of light in the tube */
    .ff-seam-tube::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 3px;
        height: 88px;
        margin-left: -1.5px;
        border-radius: 999px;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 186, 202, 0.15) 25%,
            rgba(255, 200, 214, 0.55) 48%,
            #c92c5e 58%,
            transparent 100%);
        filter: blur(0.9px);
        animation: ff-seam-drop 18s linear infinite;
    }

    .ff-seam-tube::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 3px;
        height: 64px;
        margin-left: -1.5px;
        border-radius: 999px;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(201, 44, 94, 0.35) 40%,
            rgba(176, 31, 78, 0.2) 70%,
            transparent 100%);
        filter: blur(1.2px);
        animation: ff-seam-drop 26s linear infinite;
        animation-delay: -9s;
    }

/* Soft liquid blobs drifting through the tube */
.ff-seam-fluid {
    position: absolute;
    left: 50%;
    top: -40%;
    height: 180%;
    transform: translateX(-50%);
    border-radius: 999px;
    background-size: 100% 320px;
    pointer-events: none;
    filter: blur(1.3px);
}

.ff-seam-fluid--1 {
    width: 5px;
    opacity: 0.75;
    background-image:
        repeating-linear-gradient(180deg,
            transparent 0px,
            transparent 70px,
            rgba(201, 44, 94, 0.12) 110px,
            rgba(201, 44, 94, 0.42) 150px,
            rgba(255, 180, 198, 0.28) 170px,
            rgba(176, 31, 78, 0.2) 200px,
            transparent 240px,
            transparent 320px);
    animation: ff-seam-flow 20s linear infinite;
}

.ff-seam-fluid--2 {
    width: 4px;
    opacity: 0.45;
    background-image:
        repeating-linear-gradient(180deg,
            transparent 0px,
            transparent 90px,
            rgba(176, 31, 78, 0.3) 140px,
            #c92c5e 165px,
            transparent 210px,
            transparent 320px);
    animation: ff-seam-flow 32s linear infinite reverse;
}

.ff-seam-fluid--3 {
    width: 3px;
    opacity: 0.4;
    background-image:
        repeating-linear-gradient(180deg,
            transparent 0px,
            transparent 120px,
            rgba(255, 190, 205, 0.35) 160px,
            transparent 200px,
            transparent 320px);
    animation: ff-seam-flow 24s linear infinite;
}

/* Core filament — static thin line */
.ff-seam-core {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    border-radius: 1px;
    background:
        linear-gradient(180deg,
            transparent 0%,
            #c92c5e 12%,
            #b01f4e 50%,
            #c92c5e 88%,
            transparent 100%);
    box-shadow:
        0 0 3px 0.5px rgba(201, 44, 94, 0.55),
        0 0 8px 2px rgba(176, 31, 78, 0.22);
    overflow: hidden;
}

@keyframes ff-seam-flow {
    from { background-position: 0 0; }
    to   { background-position: 0 -320px; }
}

@keyframes ff-seam-drop {
    0%   { transform: translateY(-120px); opacity: 0; }
    6%   { opacity: 0.9; }
    92%  { opacity: 0.9; }
    100% { transform: translateY(110vh); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .ff-seam-tube::before,
    .ff-seam-tube::after,
    .ff-seam-fluid {
        animation: none !important;
    }
}

.ff-collage-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

    .ff-collage-brand img {
        width: clamp(180px, 22vw, 320px);
        filter: drop-shadow(0 0 26px rgba(255, 44, 150, 0.55)) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.60));
    }

.ff-collage-tagline {
    margin-top: 16px;
    color: #d8d3e2;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.80);
}

/* ── RIGHT: form panel ── */
.ff-login-panel {
    flex: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 48px;
    box-sizing: border-box;
    overflow-y: auto;
    background: #0d0d14;
}

/* ── Login card — borderless, blends straight into the page background ── */
.ff-login-card {
    width: 100%;
    max-width: 384px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 24px 0 20px;
    box-sizing: border-box;
    margin: auto 0;
    container-type: inline-size;
    container-name: ff-login-card;
}

/* Mobile logo */
.ff-login-panel-logo {
    display: none;
    text-align: center;
    margin-bottom: 24px;
}

    .ff-login-panel-logo img {
        width: 150px;
        margin: 0 auto;
    }

/* ── Eyebrow + heading ── */
.ff-login-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e0336b;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
}

    .ff-login-eyebrow svg {
        display: block;
    }

    .ff-login-eyebrow .ff-eyebrow-dot {
        width: 7px;
        height: 7px;
        flex-shrink: 0;
        border-radius: 1.5px;
        background: #e0336b;
        transform: rotate(45deg);
        box-shadow: none;
    }

/* High specificity: theme.css paints `body.ff-dark h1` blue (#258fd3) */
.ff-login-page .ff-login-heading,
body.ff-dark .ff-login-page .ff-login-heading,
body.fp-light .ff-login-page .ff-login-heading {
    font-size: 24px;
    font-weight: 800;
    font-family: "Poppins", var(--font-family-base, sans-serif);
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.15;
}

/* Login hero heading — exactly two nowrap lines, sized to the card */
.ff-login-page:not(.ff-register-page) .ff-login-heading,
body.ff-dark .ff-login-page:not(.ff-register-page) .ff-login-heading,
body.fp-light .ff-login-page:not(.ff-register-page) .ff-login-heading {
    font-size: clamp(26px, 5vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0 0 10px;
}

.ff-login-heading-line {
    display: block;
    white-space: nowrap;
}

/* Compact auth (forgot / reset) — keep the login hero size on login only */
.ff-login-page.ff-auth-compact .ff-login-heading,
body.ff-dark .ff-login-page.ff-auth-compact .ff-login-heading,
body.fp-light .ff-login-page.ff-auth-compact .ff-login-heading {
    font-size: clamp(22px, 3.6vw, 28px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
    white-space: normal;
}

/* Compact auth — single centered column, no collage split */
.ff-login-page.ff-auth-compact {
    justify-content: center;
    align-items: center;
}

.ff-login-page.ff-auth-compact .ff-login-collage,
.ff-login-page.ff-auth-compact .ff-login-seam,
.ff-login-page.ff-auth-compact .ff-login-panel-logo {
    display: none !important;
}

.ff-login-page.ff-auth-compact .ff-login-panel {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 32px 24px;
    justify-content: center;
    align-items: center;
}

.ff-login-page.ff-auth-compact .ff-login-card {
    margin: 0 auto;
    max-width: 384px;
    width: 100%;
}

body.fp-light .ff-login-page.ff-auth-compact .ff-login-panel {
    background: transparent;
}

@media (max-width: 768px) {
    .ff-login-page.ff-auth-compact .ff-login-panel {
        padding: 12px 20px calc(64px + env(safe-area-inset-bottom, 0px) + 10px);
    }
}

.ff-login-page .ff-login-subheading {
    font-size: 14px;
    font-family: inherit;
    color: #9aa0ac;
    line-height: 1.45;
    margin: 0 0 26px;
}

/* ── Fields ── */
.ff-login-field {
    margin-bottom: 15px;
}

.ff-login-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.ff-login-forgot {
    font-size: 12.5px;
    font-weight: 500;
    color: #c97890;
    text-decoration: none;
    transition: color 0.18s;
}

    .ff-login-forgot:hover {
        color: #e0336b;
    }

/* ── Inputs ── */
.ff-login-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #2a2a38;
    background: #16161f;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .ff-login-input::placeholder {
        color: #6b7280;
    }

    .ff-login-input:focus {
        border-color: rgba(224, 51, 107, 0.70);
        background: #1a1a24;
        box-shadow: 0 0 0 3px rgba(224, 51, 107, 0.16);
    }

    /* Chrome autofill — keep the field on-theme instead of solid white/yellow */
    .ff-login-input:-webkit-autofill,
    .ff-login-input:-webkit-autofill:hover,
    .ff-login-input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #16161f inset;
        -webkit-text-fill-color: #ffffff;
        caret-color: #ffffff;
        border: 1px solid #2a2a38;
        transition: background-color 9999s ease-in-out 0s;
    }

/* ── Input icons + password eye toggle ── */
.ff-input-wrap {
    position: relative;
}

    .ff-input-wrap.has-leading-icon .ff-login-input {
        padding-left: 42px;
    }

    .ff-input-wrap:has(.ff-pwd-toggle) .ff-login-input {
        padding-right: 42px;
    }

.ff-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
}

.ff-pwd-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #e0336b;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    transition: color 0.18s;
}

    .ff-pwd-toggle:hover {
        color: #c92c5e;
    }

/* ── Submit button ── */
.ff-login-btn {
    display: block;
    width: 100%;
    height: 48px;
    margin-top: 10px;
    padding: 0 24px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #c92c5e 0%, #b01f4e 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(176, 31, 78, 0.38);
    transition: opacity 0.18s, box-shadow 0.18s, transform 0.12s, filter 0.18s;
    box-sizing: border-box;
}

    .ff-login-btn:hover {
        opacity: 1;
        transform: translateY(-1px);
        filter: brightness(1.04);
        box-shadow: 0 10px 28px rgba(176, 31, 78, 0.50);
    }

    .ff-login-btn:active {
        opacity: 0.9;
        transform: translateY(0);
    }

a.ff-login-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* ── Validators ── */
.ff-login-validation {
    display: block;
    font-size: 12px;
    color: #ff5d73;
    margin-top: 5px;
}

/* ── Error banner ── */
.ff-login-error {
    background: rgba(255, 93, 115, 0.08);
    border: 1px solid rgba(255, 93, 115, 0.28);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.45;
    color: #ff5d73;
    margin-bottom: 16px;
}

.ff-login-error:empty {
    display: none;
}

    .ff-login-error a {
        color: #e0336b;
        font-weight: 600;
        text-decoration: none;
    }

        .ff-login-error a:hover {
            text-decoration: underline;
        }

/* ── OR divider ── */
.ff-login-or {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 22px 0 0;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

    .ff-login-or::before,
    .ff-login-or::after {
        content: "";
        flex: 1;
        height: 1px;
        border-radius: 1px;
    }

    .ff-login-or::before {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14));
    }

    .ff-login-or::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent);
    }

/* ── Sign-up row ── */
.ff-login-signup-row {
    text-align: center;
    font-size: 13.5px;
    color: #9aa0ac;
    margin: 16px 0 0;
}

    .ff-login-signup-row a {
        color: #e0336b;
        font-weight: 700;
        text-decoration: none;
    }

        .ff-login-signup-row a:hover {
            text-decoration: underline;
        }

/* ── Legal ── */
.ff-login-legal {
    text-align: center;
    font-size: 11.5px;
    color: #6b7280;
    margin: 16px 0 0;
    line-height: 1.55;
}

    .ff-login-legal a {
        color: #8a8f9c;
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color 0.18s;
    }

        .ff-login-legal a:hover {
            color: #e0336b;
        }

/* ── Forgot / reset success ── */
.ff-auth-success-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 51, 107, 0.12);
    color: #e0336b;
    font-size: 18px;
    margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
    .ff-login-panel {
        padding: 28px 36px;
    }
}

@media (max-width: 1100px) {
    .ff-login-panel {
        padding: 24px 24px;
    }

    .ff-login-card {
        max-width: 384px;
    }
}

@media (max-width: 900px) {

    /* Stack into a single column; image becomes the page background. */
    body:has(.ff-login-page) {
        overflow: auto;
    }

    .ff-login-page {
        flex-direction: column;
        position: relative;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
        background: #0d0d14;
    }

    /* Hide the left collage panel + neon seam on mobile — single-column layout */
    .ff-login-collage,
    .ff-login-seam {
        display: none;
    }

    .ff-login-panel {
        flex: 1 1 auto;
        width: 100%;
        min-height: 0;
        background: transparent !important;
        padding: 16px 24px;
        overflow-y: auto;
        justify-content: center;
        align-items: center;
    }

    .ff-login-card {
        max-width: 384px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .ff-login-panel-logo {
        display: block;
        margin-bottom: 16px;
    }

        .ff-login-panel-logo img {
            width: 128px;
        }

    /* Prevent iOS zoom-on-focus */
    .ff-login-input {
        font-size: 16px;
    }
}

/* Bottom nav is visible at ≤768px — center the form in the space above it */
@media (max-width: 768px) {
    .ff-login-panel {
        padding: 12px 20px calc(64px + env(safe-area-inset-bottom, 0px) + 10px);
    }
}

@media (max-width: 480px) {
    .ff-login-panel {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ff-login-card {
        max-width: 384px;
    }
}

@media (max-width: 768px) and (max-height: 740px) {
    .ff-login-panel-logo {
        margin-bottom: 10px;
    }

        .ff-login-panel-logo img {
            width: 108px;
        }

    .ff-login-eyebrow {
        margin-bottom: 10px;
    }

    .ff-login-subheading {
        margin-bottom: 16px;
    }

    .ff-login-field {
        margin-bottom: 12px;
    }

    .ff-login-or {
        margin-top: 16px;
    }
}

/* Short desktop / laptop viewports — keep the form on-screen */
@media (max-height: 740px) and (min-width: 901px) {
    .ff-login-subheading {
        margin-bottom: 16px;
    }

    .ff-login-field {
        margin-bottom: 12px;
    }

    .ff-collage-tagline {
        margin-top: 12px;
    }
}

/* ==============================================
   LIGHT MODE  (body.fp-light)
   The neon-night look is the DARK default (base
   rules above). This block is the clean light
   counterpart, following the site's fp-light
   override pattern (see settings-redesign.css).
   Uses theme.css light palette: bg #f7f7f7 /
   surface #fff, text #0a3049 / #6e717e,
   accent #e0548d.
   ============================================== */

body.fp-light:has(.ff-login-page) {
    background: #f4f5f7;
}

body.fp-light .ff-login-page {
    background: #f4f5f7;
}

/* Form side → flat, clean white (no tint/stain) */
body.fp-light .ff-login-panel {
    background: #ffffff;
}

/* Collage → bright & vivid, blends into the white panel instead of a dark wash */
body.fp-light .ff-login-collage {
    background: #eceaf0;
}

    body.fp-light .ff-login-collage::before {
        filter: brightness(1.04) saturate(1.05) contrast(1.0);
    }

    /* Crisp right edge with a soft depth shadow into the white form (no grey haze) */
    body.fp-light .ff-login-collage::after {
        background:
            radial-gradient(120% 85% at 16% 118%, rgba(224, 84, 141, 0.14), transparent 52%),
            linear-gradient(90deg, transparent 88%, rgba(0, 0, 0, 0.10) 100%);
    }

    /* Keep the white logo + tagline legible over the brighter photo */
    body.fp-light .ff-collage-brand img {
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.50)) drop-shadow(0 0 24px rgba(0, 0, 0, 0.35));
    }

    body.fp-light .ff-collage-tagline {
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 0, 0, 0.45);
    }

/* Seam → subtle STATIC pink hairline in light; hide liquid layers */
body.fp-light .ff-login-seam {
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(224, 84, 141, 0.38) 30%, rgba(224, 84, 141, 0.22) 74%, transparent);
    box-shadow: none;
}

    body.fp-light .ff-login-seam .ff-seam-tube {
        display: none;
    }

/* Eyebrow → site accent, softer dot */
body.fp-light .ff-login-eyebrow {
    color: #e0336b;
}

    body.fp-light .ff-login-eyebrow .ff-eyebrow-dot {
        background: #e0336b;
        box-shadow: none;
    }

/* Headings + text → dark on light (override the always-white base heading) */
body.fp-light .ff-login-page .ff-login-heading {
    color: #0a3049;
}

body.fp-light .ff-login-subheading {
    color: #245870;
}

body.fp-light .ff-login-label {
    color: #0a3049;
}

body.fp-light .ff-login-forgot {
    color: #d47896;
}

    body.fp-light .ff-login-forgot:hover {
        color: #e0336b;
    }

/* Inputs → soft light fields, brand-pink focus */
body.fp-light .ff-login-input {
    background: #f6f7f9;
    border-color: #e3e5ea;
    color: #0a3049;
}

    body.fp-light .ff-login-input::placeholder {
        color: #3a6b82 !important;
        opacity: 1;
    }

    body.fp-light .ff-login-input:focus {
        border-color: rgba(224, 51, 107, 0.55);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(224, 51, 107, 0.14);
    }

    body.fp-light .ff-login-input:-webkit-autofill,
    body.fp-light .ff-login-input:-webkit-autofill:hover,
    body.fp-light .ff-login-input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
        -webkit-text-fill-color: #0a3049;
        caret-color: #0a3049;
        border: 1px solid #dddddd;
    }

body.fp-light .ff-input-icon {
    color: #3a6b82;
}

body.fp-light .ff-pwd-toggle {
    color: #e0336b;
}

    body.fp-light .ff-pwd-toggle:hover {
        color: #c92c5e;
    }

/* Button → keep the pink CTA, softer (non-neon) shadow on light */
body.fp-light .ff-login-btn {
    box-shadow: 0 8px 20px rgba(176, 31, 78, 0.28);
}

    body.fp-light .ff-login-btn:hover {
        box-shadow: 0 12px 26px rgba(176, 31, 78, 0.36);
    }

/* Sign-up + legal → readable on light */
body.fp-light .ff-login-or {
    color: #3a6b82;
}

    body.fp-light .ff-login-or::before {
        background: linear-gradient(90deg, transparent, rgba(10, 48, 73, 0.14));
    }

    body.fp-light .ff-login-or::after {
        background: linear-gradient(90deg, rgba(10, 48, 73, 0.14), transparent);
    }

body.fp-light .ff-login-signup-row {
    color: #245870;
}

body.fp-light .ff-login-legal {
    color: #3a6b82;
}

    body.fp-light .ff-login-legal a {
        color: #245870;
        text-decoration: underline;
    }

body.fp-light .ff-auth-success-icon {
    background: rgba(224, 51, 107, 0.10);
}
