/* ─────────────────────────────────────────
   Base reset & typography
   Brand: Outfit, #0062E0 (blue), #01D7A3 (teal), #2A2A2A (dark text)
───────────────────────────────────────── */

/* ── WebAuthn / email icon centred above headings ─────────────────────── */
.webauthn-icon {
    display: flex;
    justify-content: center;
    margin: 8px 0 18px;
}
.webauthn-icon.webauthn-icon-error svg path { fill: #cf1322; }

/* ── WebAuthn status + spinner ────────────────────────────────────────── */
.webauthn-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}
.webauthn-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e0f5ef;
    border-top-color: #0062E0;
    border-radius: 50%;
    animation: webauthn-spin 0.8s linear infinite;
}
@keyframes webauthn-spin { to { transform: rotate(360deg); } }
.webauthn-status-text { font-size: 14px; color: #555; }
.webauthn-status.webauthn-status-error .webauthn-status-text { color: #cf1322; font-weight: 500; }

/* ── OTP 6-digit boxes ────────────────────────────────────────────────── */
.otp-boxes {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.otp-box {
    width: 3.5rem;
    height: 3.12rem;
    border: 1.5px solid #DADCE0;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

.otp-box:focus {
    border-color: #0062E0;
    box-shadow: 0 0 0 3px rgba(0, 98, 224, 0.12);
}

.otp-box.input-error {
    border-color: #ED736F;
}

/* ── OTP meta row (resend + timer) ───────────────────────────────────── */
.otp-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.otp-resend-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #757575;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.otp-resend-link:not(:disabled):hover {
    color: #0062E0;
}

.otp-resend-link:disabled {
    color: #bbb;
    cursor: default;
    text-decoration: underline;
}

.otp-timer {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #000;
}

/* ── OTP subtitle ─────────────────────────────────────────────────────── */
.otp-subtitle {
    text-align: center;
    font-size: 16px;
    color: #757575;
    margin-bottom: 28px;
}

/* ── Attempts hint ────────────────────────────────────────────────────── */
.otp-attempts-hint {
    font-size: 12px;
    color: #ad6800;
    margin-top: -16px;
    margin-bottom: 16px;
}

/* ── Back button ──────────────────────────────────────────────────────── */
.btn-back {
    width: 100%;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.7);
    color: #242424;
    border: 1px solid #DADCE0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: background 0.2s, border-color 0.2s;
    height: 42px;
}

.btn-back:hover {
    background: #f0f0f0;
    border-color: #c4c7cc;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 14px;
    color: #757575;
    background-color: #f0f4f8;
    overflow-x: hidden;
}

/* ─────────────────────────────────────────
   Split-panel wrapper
───────────────────────────────────────── */
.signin__page {
    display: flex;
    min-height: 100vh;
}

/* ─────────────────────────────────────────
   LEFT — Branding panel
───────────────────────────────────────── */
.signin_img {
    flex: 0 0 50%;
    background: #000;
    color: #fff;
    padding: 48px 48px 48px 56px;
    display: flex;
    align-items: flex-start;
    overflow-y: auto;
    position: relative;
}

/* Grid texture overlay */
.grid-texture {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.signin_img .content {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
}

.logo-icon {
    width: 10rem;
    height: 1.875rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    line-height: 1;
}

/* ── Tagline pill ── */
.tagline-pill {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    border: 0.9px solid #FF522F;
    border-radius: 50px;
    padding: 11px 16px;
    margin-bottom: 20px;
    letter-spacing: 0.18px;
    background: #000;
    width: 60%;;
}

/* Main heading */
.main-heading {
    font-size: 34px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 32px;
}

.heading-gradient {
    background: linear-gradient(180deg, #FF5124, #F09819);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trusted by */
.trusted-section {
    margin-bottom: 28px;
}

.trusted-heading {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.trusted-highlight {
    font-weight: 600;
    background: linear-gradient(90deg, #FF5124 21%, #F09819 33%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.brand-logo-item {
    width: 77px;
    height: 38px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px 8px;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-green {
    background: rgba(1, 215, 163, 0.15);
}

.feature-icon-orange {
    background: rgba(240, 152, 25, 0.15);
}

.feature-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    line-height: 1.4;
}

.feature-desc {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #afafaf;
    line-height: 1.8;
}

/* Left panel divider */
.left-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 28px 0;
}

/* Testimonials row */
.testimonials-row {
    display: flex;
    gap: 24px;
}

.testimonial-mini {
    flex: 1;
    text-align: center;
}

.stars-img {
    width: 6rem;
    height: 17px;
    margin-bottom: 5px;
}

.mini-quote {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.4;
}

.mini-author {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #afafaf;
    line-height: 1.5;
}

.mini-company {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #afafaf;
    line-height: 1.5;
}

/* Tagline */
.collect-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

/* Main heading */
.main-heading {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 40px;
}

.main-heading span {
    color: #01D7A3;
}

/* ─────────────────────────────────────────
   RIGHT — Form panel
───────────────────────────────────────── */
.signin__page_form {
    flex: 0 0 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    overflow-y: auto;
}

.form-card {
    background: #fff;
    border-radius: 11px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    padding: 60px 50px;
    width: 100%;
    max-width: 605px;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 442px;
}

/* Global alert */
.kc-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 18px;
    line-height: 1.5;
}

.kc-alert-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.kc-alert-error {
    background: #fff1f0;
    color: #a8071a;
    border: 1px solid #ffa39e;
    border-left: 4px solid #cf1322;
}

.kc-alert-warning {
    background: #fffbe6;
    color: #ad6800;
    border: 1px solid #ffe58f;
    border-left: 4px solid #d48806;
    font-weight: 500;
}

.kc-alert-info {
    background: #e6f7f5;
    color: #0a6e5e;
    border: 1px solid #87e8de;
}

.kc-alert-success {
    background: #f6ffed;
    color: #135200;
    border: 1px solid #b7eb8f;
}

/* Brute-force lockout banner */
.kc-alert-locked {
    background: #fff0ed;
    color: #7a1a00;
    border: 1px solid #ffb39e;
    border-left: 4px solid #9d2000;
    align-items: flex-start;
}

.kc-alert-locked-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kc-alert-locked-body strong {
    font-size: 13px;
    font-weight: 600;
}

.kc-alert-locked-body span {
    font-size: 12px;
    opacity: 0.85;
}

/* Progress bar — pill-shaped bars */
.progress-bar {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 28px;
    justify-content: center;
}

.bar {
    width: 26px;
    height: 3px;
    border-radius: 10px;
    background: #D9D9D9;
    display: inline-block;
    transition: all 0.2s ease;
}

.bar.active {
    background: #0062E0;
    border-radius: 5px;
}

/* Legacy progress dots (for other pages) */
.progress-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
    display: inline-block;
    transition: all 0.2s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: #0062E0;
}

/* Form headings */
.signup_title {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.457;
    text-align: center;
}

.form-subtitle {
    font-size: 13px;
    color: #757575;
    margin-bottom: 26px;
    font-family: 'Outfit', sans-serif;
}

/* Google sign-up button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 9px 16px;
    border: 1px solid #DADCE0;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #1F1F1F;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    letter-spacing: 0.25px;
    margin-bottom: 0;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #c4c7cc;
}

.google-icon {
    width: 23px;
    height: 23px;
}

/* OR separator */
.or-separator {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 30px 0;
}

.or-separator hr {
    flex: 1;
    border: none;
    border-top: 1px solid #e7eaec;
}

.or-separator span {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #9BA1A7;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Section title for Google / social sign-in */
.google-signin-title p {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    margin-bottom: 14px;
}

/* Form groups */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    margin-bottom: 8px;
}

.important span,
.required {
    color: #ED736F;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #757575;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    height: 42px;
}

.form-control::placeholder {
    color: #757575;
    font-weight: 400;
    opacity: 0.5;
}

.form-control:focus {
    border-color: #0062E0;
    box-shadow: 0 0 0 3px rgba(0, 98, 224, 0.12);
}

.form-control.input-error {
    border-color: #ED736F;
}

.form-control.input-error:focus {
    box-shadow: 0 0 0 3px rgba(237, 115, 111, 0.12);
}

.form-control:disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

/* Error message row */
.error-message {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: #ED736F;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
    visibility: visible;
}

.error__icon {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
}

/* Remember me + forgot password */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    min-height: 22px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.remember-me input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: #0062E0;
    border-radius: 3px;
}

.remember-me span {
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    color: #757575;
}

.forgot-link {
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    color: #0062E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}

.forgot-link:hover {
    color: #004bb5;
    text-decoration: underline;
}

/* reCAPTCHA container */
.form-group.captcha {
    margin-bottom: 18px;
}

.g-recaptcha {
    transform-origin: left top;
}

/* Submit / CTA button — brand blue #0062E0 */
.btn-confirm {
    width: 100%;
    padding: 11px 16px;
    background: #0062E0;
    color: #fff;
    border: 1px solid #0062E0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
    margin-bottom: 18px;
    height: 42px;
}

.btn-confirm:hover {
    background: #004bb5;
    border-color: #004bb5;
}

.btn-confirm:active {
    transform: translateY(1px);
    background: #003d94;
}

.btn-confirm:disabled {
    background: #a3c4f3;
    border-color: #a3c4f3;
    cursor: not-allowed;
    transform: none;
}

/* Sign-up / sign-in switch */
.sign-in-section {
    text-align: center;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    margin-top: 4px;
}

.sign-in-section a {
    color: #0062E0;
    text-decoration: none;
    font-weight: 500;
}

.sign-in-section a:hover {
    color: #004bb5;
    text-decoration: underline;
}

/* Terms text */
.sign-in-section small {
    display: block;
    margin-top: 16px;
    font-size: 11px;
    color: #adb5bd;
    line-height: 1.6;
}

.sign-in-section small a {
    color: #0062E0;
    text-decoration: underline;
}

/* Social providers — "or continue with" section */
.social-providers {
    margin-top: 22px;
}

.social-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.social-separator hr {
    flex: 1;
    border: none;
    border-top: 1px solid #e7eaec;
}

.social-separator span {
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    color: #adb5bd;
    white-space: nowrap;
}

.social-provider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #DADCE0;
    border-radius: 5px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    margin-bottom: 8px;
}

.social-provider-btn:hover {
    background: rgba(0, 98, 224, 0.04);
    border-color: #0062E0;
}

/* ─────────────────────────────────────────
   Verify email page
───────────────────────────────────────── */
.verify-icon {
    margin-bottom: 20px;
}

.verify-subtitle {
    margin-bottom: 16px;
}

.verify-email-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 98, 224, 0.08);
    border: 1px solid rgba(0, 98, 224, 0.25);
    border-radius: 6px;
    padding: 8px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #2A2A2A;
    font-family: 'Outfit', sans-serif;
    word-break: break-all;
}

.verify-instructions {
    font-size: 13px;
    color: #757575;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-resend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px 16px;
    background: #fff;
    color: #0062E0;
    border: 1.5px solid #0062E0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0;
}

.btn-resend:hover {
    background: rgba(0, 98, 224, 0.06);
}

/* ─────────────────────────────────────────
   Register page — tighter spacing (more fields)
───────────────────────────────────────── */
.signin__page_form .form-wrapper .form-group {
    margin-bottom: 14px;
}

/* ─────────────────────────────────────────
   Responsive — stack panels on small screens
───────────────────────────────────────── */
@media (max-width: 900px) {
    .signin__page {
        flex-direction: column;
    }

    .signin_img {
        flex: none;
        padding: 36px 32px;
        min-height: auto;
    }

    .main-heading {
        font-size: 22px;
    }

    .main-heading {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-row {
        flex-direction: column;
        gap: 16px;
    }

    .trusted-heading {
        font-size: 18px;
    }

    .brand-logo-item {
        width: 65px;
        height: 32px;
    }

    .signin__page_form {
        flex: none;
        padding: 40px 24px;
    }

    .form-card {
        padding: 40px 28px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .signin_img {
        padding: 28px 20px;
    }

    .signin__page_form {
        padding: 32px 20px;
    }

    .form-card {
        padding: 32px 20px;
    }

    .signup_title {
        font-size: 16px;
    }
    .otp-box{
        width: 36px;
        height: 36px;
    }
}

/* ─────────────────────────────────────────
   TOTP setup (login-config-totp.ftl)
───────────────────────────────────────── */
.totp-step {
    margin-bottom: 16px;
}
.totp-step-label {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}
.totp-qr-wrapper {
    display: flex;
    justify-content: center;
    padding: 12px;
    background: #f5faf9;
    border: 1px solid #b2dfda;
    border-radius: 10px;
}
.totp-qr {
    width: 160px;
    height: 160px;
}
.totp-secret-box {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 2px;
    color: #333;
    word-break: break-all;
    cursor: pointer;
    user-select: all;
}

/* ─────────────────────────────────────────
   Authenticator selector (select-authenticator.ftl)
───────────────────────────────────────── */
.auth-method-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.auth-method-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Outfit', sans-serif;
}
.auth-method-btn:hover {
    border-color: #0062E0;
    box-shadow: 0 0 0 3px rgba(0, 98, 224, 0.1);
}
.auth-method-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.auth-method-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.auth-method-label strong {
    font-size: 14px;
    color: #2A2A2A;
}
.auth-method-label small {
    font-size: 12px;
    color: #888;
}
.auth-method-arrow {
    font-size: 22px;
    color: #aaa;
    line-height: 1;
}

/* Primary auth method button (recommended) */
.auth-method-btn--primary {
    border-color: #0062E0;
    background: #f0f4ff;
}
.auth-method-btn--primary:hover {
    background: #e6ecfa;
}
.recommended-badge,
.configured-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: #0062E0;
    color: #fff;
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.setup-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: #f0f0f0;
    color: #666;
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Verified email display (password step) ─────────────────────────── */
.verified-email-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f6ff;
    border: 1px solid #b2d4ff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1a1a1a;
}
.verified-email-text {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #0062E0;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
}
