/*
 * Auth pages — Psycounts cream + green light theme.
 *
 * Used by templates/accounts/*.html. Body class is `auth-dark-theme`
 * (kept for selector compatibility — semantically just "auth page").
 *
 * Standalone: no @import. Self-contained accessibility (focus rings,
 * visually-hidden skip link). The companion auth-accessibility.css is
 * intentionally NOT loaded — its rules assume a dark-navy surface and
 * bake in white text / translucent-white inputs that vanish on cream.
 *
 * Font matches the dashboard (`psycounts_base.html` → `style.css` line 60):
 * Inter, with the same -apple-system / BlinkMacSystemFont fallback chain.
 */

/* ===== Reset variables that auth-accessibility.css used to set ===== */
:root {
    --pc-paper:        #FAF7F0;
    --pc-paper-warm:   #F0E9D8;
    --pc-cream-deep:   #EFE5CC;
    --pc-ink:          #1F3A2E;
    --pc-quiet:        #4B6358;
    --pc-muted:        #6B7280;
    --pc-green:        #10B981;
    --pc-green-deep:   #047857;
    --pc-green-soft:   #D1FAE5;
    --pc-green-mist:   #ECFDF5;
    --pc-border:       rgba(31, 58, 46, 0.18);
    --pc-border-soft:  rgba(31, 58, 46, 0.10);
}

/* ===== Page ===== */
body.auth-dark-theme {
    /* matches dashboard font stack from style.css line 60 */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    color: var(--pc-ink) !important;
    min-height: 100vh;
    margin: 0;
    /* Soft cream gradient with a hint of green at the top-right — feels
       designed without being noisy. */
    background:
        radial-gradient(circle at 100% 0%, var(--pc-green-mist) 0%, transparent 45%),
        radial-gradient(circle at 0% 100%, var(--pc-cream-deep) 0%, transparent 50%),
        var(--pc-paper);
    background-attachment: fixed;
}

/* ===== Skip link — properly hidden until focus ===== */
.auth-skip-link {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.auth-skip-link:focus {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    background: var(--pc-green) !important;
    color: var(--pc-paper) !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    border: 0 !important;
    z-index: 9999 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.auth-visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Layout ===== */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 1rem 4rem;
    box-sizing: border-box;
}

.auth-form-container {
    background: #FFFFFF;
    border: 1px solid var(--pc-border-soft);
    border-radius: 20px;
    /* Layered shadow: a small ambient + a larger soft green-tinted depth
       lifts the card noticeably off the cream gradient. */
    box-shadow:
        0 1px 3px rgba(31, 58, 46, 0.06),
        0 12px 40px rgba(31, 58, 46, 0.10),
        0 24px 60px -20px rgba(16, 185, 129, 0.12);
    padding: 2.75rem 2.5rem 2.25rem;
    max-width: 460px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Wider variant for multi-step pages like /accounts/2fa/setup/.
   The narrow 460px width felt cramped when content includes a QR code,
   bullet list, and a form all stacked. .wide lays them out side-by-side. */
.auth-form-container.wide {
    max-width: 1120px;
    padding: 2.75rem 3rem 2.25rem;
}
/* Mid-width variant for forms with multiple grouped fields
   (e.g. profile onboarding) — wider than the default 460px sign-in
   card but narrower than .wide so a single column of fields stays
   readable. */
.auth-form-container.medium {
    max-width: 640px;
    padding: 2.75rem 2.75rem 2.25rem;
}

/* ===== Onboarding form sections ===== */
.onboarding-section {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--pc-border-soft);
}
.onboarding-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 1rem;
}
.onboarding-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pc-green-deep);
    margin-bottom: 0.85rem;
    margin-top: 0.5rem;
}
.onboarding-section-hint {
    font-size: 0.85rem;
    color: var(--pc-quiet);
    margin: -0.5rem 0 0.85rem;
    line-height: 1.5;
}
.onboarding-optional {
    color: var(--pc-quiet);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.78rem;
}

/* Required-field asterisk for any form rendered inside the auth chrome.
   Uses :has() to find labels whose form-group contains a required input. */
.auth-dark-theme .form-group:has(input[required]) > label::after,
.auth-dark-theme .form-group:has(select[required]) > label::after,
.auth-dark-theme .form-group:has(textarea[required]) > label::after,
.auth-dark-theme .mb-3:has(input[required]) > label::after,
.auth-dark-theme .mb-3:has(select[required]) > label::after,
.auth-dark-theme .mb-3:has(textarea[required]) > label::after {
    content: " *";
    color: #DC2626;
    font-weight: 700;
}

/* ===== Step grid (used inside .auth-form-container.wide) ===== */
.auth-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
@media (max-width: 991px) {
    .auth-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .auth-steps { grid-template-columns: 1fr; gap: 1rem; }
    .auth-form-container.wide { padding: 2rem 1.5rem 1.75rem; }
}

.auth-step {
    background: #FFFFFF;
    border: 1.5px solid var(--pc-border-soft);
    border-radius: 14px;
    padding: 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-step:hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.08);
}
.auth-step-number {
    display: grid;
    place-items: center;
    width: 36px; height: 36px;
    background: var(--pc-green);
    color: var(--pc-paper);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    font-family: 'Inter', sans-serif;
}
.auth-step h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--pc-ink) !important;
    margin: 0 0 0.6rem !important;
    line-height: 1.3 !important;
}
.auth-step p {
    font-size: 0.9rem;
    color: var(--pc-quiet);
    margin: 0 0 0.75rem;
    line-height: 1.55;
}
.auth-step ul {
    margin: 0 0 0 1.1rem;
    padding: 0;
}
.auth-step li {
    font-size: 0.88rem;
    color: var(--pc-quiet);
    margin-bottom: 0.3rem;
}

/* QR code in the middle step */
.auth-step .auth-qr-code,
.auth-step img.img-fluid {
    max-width: 100%;
    width: auto;
    border-radius: 10px;
    margin: 0.5rem auto 0;
    display: block;
    background: #FFFFFF;
    padding: 8px;
    border: 1px solid var(--pc-border-soft);
}

/* Form in the last step — push to bottom for visual alignment with QR/list */
.auth-step form {
    margin-top: auto;
}

/* ===== OTP / verification-code boxes ===== */
/* Used by static/js/pc-otp.js, which auto-detects 6-digit numeric inputs
   on auth pages and replaces them with this six-box layout. The original
   input is hidden but still submits the joined value. */
.pc-otp-wrap {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0 0.25rem;
    flex-wrap: nowrap;
}
.pc-otp-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 1.25rem;
    user-select: none;
    width: 0.5rem;
    flex-shrink: 0;
}

/* "Use a backup code instead" toggle (pc-otp.js renders this when the
   underlying input has data-pc-otp-allow-backup="1") */
.pc-otp-toggle {
    display: block;
    margin: 0.5rem auto 0;
    background: transparent;
    border: 0;
    color: var(--pc-green-deep);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    text-decoration: underline;
    font-family: inherit;
}
.pc-otp-toggle:hover {
    color: var(--pc-green);
}
.pc-otp-backup-input {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid var(--pc-border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
    color: var(--pc-ink);
    font-family: 'Inter', sans-serif;
    text-align: center;
    letter-spacing: 0.15em;
    margin: 0.75rem 0 0;
    box-sizing: border-box;
}
.pc-otp-backup-input:focus {
    outline: none;
    border-color: var(--pc-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.pc-otp-box {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--pc-border);
    border-radius: 10px;
    background: #FFFFFF;
    color: var(--pc-ink);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    padding: 0;
    box-shadow: none;
    -moz-appearance: textfield;
    appearance: none;
    box-sizing: border-box;
}
.pc-otp-box::-webkit-outer-spin-button,
.pc-otp-box::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.pc-otp-box:hover {
    border-color: rgba(31, 58, 46, 0.30);
}
.pc-otp-box:focus {
    outline: none;
    border-color: var(--pc-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.20);
}
.pc-otp-box.filled {
    border-color: var(--pc-green);
    background: var(--pc-green-mist);
}
/* Server-side validation error → red boxes */
.pc-otp-wrap.has-error .pc-otp-box {
    border-color: #DC2626;
}
.pc-otp-wrap.has-error .pc-otp-box:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}

@media (max-width: 540px) {
    .pc-otp-box {
        width: 40px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 8px;
    }
    .pc-otp-wrap { gap: 0.35rem; }
}
@media (max-width: 380px) {
    .pc-otp-box {
        width: 36px;
        height: 46px;
        font-size: 1.1rem;
    }
    .pc-otp-wrap { gap: 0.25rem; }
}

/* Subtle top accent strip in brand green for a finished feel */
.auth-form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--pc-green) 0%, var(--pc-green-deep) 100%);
    border-radius: 2px;
}

.auth-form-inner { position: relative; }

/* ===== Logo (inside the card, top) ===== */
.auth-logo {
    text-align: center;
    margin: 0.5rem 0 1.75rem;
}
.auth-logo a { display: inline-block; }
.auth-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Title + subtitle ===== */
.auth-form-inner > header { margin-bottom: 1.5rem; text-align: center; }

.auth-dark-theme h1,
.auth-dark-theme h2,
.auth-dark-theme h3 {
    color: var(--pc-ink) !important;
    margin: 0;
}
.auth-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--pc-ink) !important;
    text-align: center;
    margin: 0 0 0.4rem !important;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.auth-subtitle {
    color: var(--pc-quiet) !important;
    text-align: center;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}
.auth-dark-theme p { color: var(--pc-quiet); line-height: 1.6; }

/* ===== Form ===== */
.auth-dark-theme form {
    margin-top: 0.5rem;
}

.auth-dark-theme .form-group,
.auth-dark-theme .mb-3 {
    margin-bottom: 1rem;
}

.auth-dark-theme label {
    display: block !important;
    color: var(--pc-ink) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: 0.01em;
    text-transform: none !important;
}

.auth-dark-theme .form-control,
/* Exclude .pc-otp-box from the generic input rule — it has its own
   48px-wide, 1.5rem-text styling above. Without this :not() the
   width:100%/padding:0.8rem/font-size:0.98rem !important here squashed
   the OTP digits to invisibility. */
.auth-dark-theme input[type="text"]:not(.pc-otp-box):not(.pc-otp-backup-input),
.auth-dark-theme input[type="email"],
.auth-dark-theme input[type="password"],
.auth-dark-theme input[type="number"],
.auth-dark-theme input[type="tel"],
.auth-dark-theme textarea,
.auth-dark-theme select {
    width: 100% !important;
    background: #FFFFFF !important;
    border: 1.5px solid var(--pc-border) !important;
    border-radius: 10px !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.98rem !important;
    color: var(--pc-ink) !important;
    font-family: inherit !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    /* `-webkit-text-fill-color` REMOVED here. It was inheriting into
       the ::placeholder pseudo and overriding the placeholder's own
       color in Chrome/Safari — making placeholders appear in the dark
       ink colour no matter what the ::placeholder rule said. The
       autofill-yellow concern it was addressing is now handled by
       the dedicated -webkit-autofill rule below. */
}
/* Defeat Chrome's yellow autofill background while preserving readable
   text — only applies when the field is actually autofilled, so it
   doesn't bleed into the placeholder rendering path. */
.auth-dark-theme input:-webkit-autofill,
.auth-dark-theme input:-webkit-autofill:hover,
.auth-dark-theme input:-webkit-autofill:focus,
.auth-dark-theme textarea:-webkit-autofill,
.auth-dark-theme select:-webkit-autofill {
    -webkit-text-fill-color: var(--pc-ink) !important;
    -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
.auth-dark-theme .form-control:hover,
.auth-dark-theme input:hover,
.auth-dark-theme textarea:hover,
.auth-dark-theme select:hover {
    border-color: rgba(31, 58, 46, 0.30) !important;
}
.auth-dark-theme .form-control:focus,
.auth-dark-theme input:focus,
.auth-dark-theme textarea:focus,
.auth-dark-theme select:focus {
    outline: none !important;
    border-color: var(--pc-green) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18) !important;
    background: #FFFFFF !important;
    transform: none !important;
}
/* ===== Placeholder text — must read as hint, never as typed content =====
   Two parallel selector strategies so SOMETHING wins regardless of cache or
   body-class concerns:
     1. Scoped to .auth-form-container — doesn't depend on the body class at
        all; matches any input inside the auth/onboarding form card.
     2. body.auth-dark-theme — keeps backwards compat with how all other
        auth-page styles are scoped.
   Either alone suffices; together they're bulletproof.
*/
.auth-form-container,
body.auth-dark-theme {
    --bs-secondary-color: #C8CDD2 !important;
}
.auth-form-container input::placeholder,
.auth-form-container textarea::placeholder,
.auth-form-container .form-control::placeholder,
.auth-form-container input::-webkit-input-placeholder,
.auth-form-container textarea::-webkit-input-placeholder,
.auth-form-container input::-moz-placeholder,
.auth-form-container textarea::-moz-placeholder,
.auth-form-container input:-ms-input-placeholder,
.auth-form-container textarea:-ms-input-placeholder,
body.auth-dark-theme input::placeholder,
body.auth-dark-theme textarea::placeholder,
body.auth-dark-theme .form-control::placeholder {
    /* TEMPORARY DEBUG COLOUR — HOT PINK so you can instantly tell whether
       the CSS file is reaching your browser. If placeholders are pink: my
       rule wins, just need to swap the colour back. If still dark: it's
       browser/WhiteNoise cache. Restart runserver + hard-refresh. */
    color: #FF1493 !important;
    opacity: 1 !important;
    font-weight: 400 !important;
    font-style: italic !important;
    -webkit-text-fill-color: #FF1493 !important;
}

/* Helper text under inputs */
.auth-dark-theme .form-text,
.auth-dark-theme small.text-muted,
.auth-dark-theme small {
    color: var(--pc-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 0.3rem !important;
    display: block !important;
}

/* ===== Buttons ===== */
.auth-dark-theme .btn-primary,
.auth-dark-theme button[type="submit"] {
    width: 100% !important;
    background: var(--pc-green) !important;
    border: 0 !important;
    color: var(--pc-paper) !important;
    padding: 0.95rem 1.25rem !important;
    border-radius: 999px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    cursor: pointer !important;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease !important;
    margin-top: 0.75rem !important;
    box-shadow: 0 4px 0 var(--pc-green-deep), 0 8px 16px rgba(16, 185, 129, 0.18) !important;
    letter-spacing: 0.01em;
}
.auth-dark-theme .btn-primary:hover,
.auth-dark-theme button[type="submit"]:hover,
.auth-dark-theme .btn-primary:focus,
.auth-dark-theme button[type="submit"]:focus {
    background: var(--pc-green-deep) !important;
    color: var(--pc-paper) !important;
    box-shadow: 0 2px 0 var(--pc-green-deep), 0 6px 12px rgba(16, 185, 129, 0.22) !important;
    transform: translateY(2px) !important;
    outline: none !important;
}

.auth-dark-theme .btn-secondary {
    width: 100% !important;
    background: transparent !important;
    border: 1.5px solid var(--pc-ink) !important;
    color: var(--pc-ink) !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-top: 0.5rem !important;
    box-shadow: none !important;
}
.auth-dark-theme .btn-secondary:hover {
    background: var(--pc-ink) !important;
    color: var(--pc-paper) !important;
}

/* ===== Links ===== */
.auth-dark-theme a {
    color: var(--pc-green-deep) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.15s ease;
}
.auth-dark-theme a:hover,
.auth-dark-theme a:focus {
    color: var(--pc-green) !important;
    text-decoration: underline !important;
}

/* ===== Divider ===== */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--pc-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: var(--pc-border-soft);
}
.auth-divider span {
    background: #FFFFFF !important;
    padding: 0 0.85rem !important;
    position: relative;
    color: var(--pc-muted) !important;
    font-weight: 500;
}

/* ===== Footer ===== */
.auth-copyright-footer {
    text-align: center;
    margin-top: 0.75rem;
    color: var(--pc-quiet);
    font-size: 0.82rem;
}
.auth-copyright-footer .text-muted { color: var(--pc-muted) !important; }

/* ===== Errors / messages ===== */
.auth-dark-theme .alert,
.auth-dark-theme .invalid-feedback,
.auth-dark-theme .errorlist,
.auth-dark-theme .errorlist li {
    color: #DC2626 !important;
    font-size: 0.85rem !important;
    margin-top: 0.3rem !important;
    list-style: none !important;
    padding-left: 0 !important;
    background: transparent !important;
    border: 0 !important;
}
.auth-dark-theme .alert {
    padding: 0.75rem 1rem !important;
    border-radius: 10px !important;
    background: rgba(220, 38, 38, 0.08) !important;
    border: 1px solid rgba(220, 38, 38, 0.2) !important;
    margin-bottom: 1rem !important;
}
.auth-dark-theme .alert-success {
    color: var(--pc-green-deep) !important;
    background: rgba(16, 185, 129, 0.10) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
}
.auth-dark-theme .is-invalid {
    border-color: #DC2626 !important;
    background: #FFFFFF !important;
}

/* ===== Utility classes used by auth templates ===== */
.auth-text-center { text-align: center; }
.auth-mt-3 { margin-top: 1rem; }
.auth-mb-3 { margin-bottom: 1rem; }
.auth-ms-2 { margin-left: 0.5rem; }
.auth-pt-3 { padding-top: 1rem; }
.auth-d-flex { display: flex; }
.auth-justify-content-center { justify-content: center; }
.auth-flex-wrap { flex-wrap: wrap; }
.auth-gap-2 { gap: 0.5rem; }

/* Bootstrap form helper rendering — ensure consistent spacing */
.auth-dark-theme .form-control + .form-text {
    margin-top: 0.3rem;
}

/* ===== Focus accessibility — visible green ring for keyboard nav ===== */
.auth-dark-theme a:focus-visible,
.auth-dark-theme button:focus-visible {
    outline: 2px solid var(--pc-green) !important;
    outline-offset: 2px !important;
    border-radius: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 540px) {
    .auth-form-container {
        padding: 2rem 1.5rem 1.75rem;
        border-radius: 16px;
    }
    .auth-logo img { max-width: 150px; }
    .auth-title { font-size: 1.4rem !important; }
}

/* =====================================================================
   Placeholder text — final, working version.

   Each rule has ONLY ONE selector (no comma list). Earlier attempt mixed
   `:-ms-input-placeholder` (IE-legacy single-colon syntax) into a comma
   list with modern selectors. Per CSS3 spec, an unparseable simple
   selector in a comma list invalidates the WHOLE rule — that's why
   nothing was being applied even though the rule was right there in
   the served file. Splitting into separate rules sidesteps that quirk.

   `-webkit-text-fill-color` is set explicitly on the placeholder pseudo
   because Chrome/Safari otherwise inherit it from the parent input
   even when the placeholder's `color` is set.
   ===================================================================== */
.auth-form-container input::placeholder {
    color: #C8CDD2 !important;
    -webkit-text-fill-color: #C8CDD2 !important;
    opacity: 1 !important;
    font-style: italic !important;
    font-weight: 400 !important;
}
.auth-form-container textarea::placeholder {
    color: #C8CDD2 !important;
    -webkit-text-fill-color: #C8CDD2 !important;
    opacity: 1 !important;
    font-style: italic !important;
    font-weight: 400 !important;
}
.auth-form-container .form-control::placeholder {
    color: #C8CDD2 !important;
    -webkit-text-fill-color: #C8CDD2 !important;
    opacity: 1 !important;
    font-style: italic !important;
    font-weight: 400 !important;
}
