/**
 * WC Email OTP Login — scoped styles.
 * All rules are scoped under #wceol-login-wrap to avoid conflicts.
 */

/* ── Error notice ──────────────────────────────────────────────── */

#wceol-login-wrap .wceol-error {
    margin: 0 0 16px;
    padding: 12px 16px;
    list-style: none;
    border-left: 4px solid #e2401c;
    background: #fff8f7;
    color: #e2401c;
    font-size: 0.9em;
}

#wceol-login-wrap .wceol-error::before {
    display: none;
    content: none;
}

/* ── Email preview (step 2 heading) ───────────────────────────── */

#wceol-login-wrap .wceol-email-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-weight: 500;
    color: #333;
}

#wceol-login-wrap .wceol-email-preview a {
    font-size: 0.85em;
    font-weight: 400;
}

/* ── OTP label ────────────────────────────────────────────────── */

#wceol-login-wrap .wceol-otp-label {
    margin: 0 0 12px;
    font-size: 0.9em;
    color: #555;
}

/* ── OTP digit inputs ─────────────────────────────────────────── */

#wceol-login-wrap .wceol-otp-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 20px;
    flex-wrap: wrap;
}

#wceol-login-wrap .wceol-otp-digit {
    width: 48px;
    height: 52px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    padding: 0;
    border: 1px solid #bfbfbf;
    border-radius: 6px;
    background: #fff;
    color: #333;
    caret-color: transparent;
    transition: border-color 0.15s;
    -moz-appearance: textfield;
}

#wceol-login-wrap .wceol-otp-digit::-webkit-outer-spin-button,
#wceol-login-wrap .wceol-otp-digit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#wceol-login-wrap .wceol-otp-digit:focus {
    outline: none;
    border-color: #7f54b3;
    box-shadow: 0 0 0 2px rgba(127, 84, 179, 0.15);
}

#wceol-login-wrap .wceol-otp-splitter {
    color: #aaa;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

/* Error state on digits */
#wceol-login-wrap .wceol-otp-inputs.wceol-otp-error .wceol-otp-digit {
    border-color: #e2401c;
}

/* ── Verify button row ────────────────────────────────────────── */

#wceol-login-wrap .wceol-verify-row {
    margin-bottom: 12px;
}

/* ── Resend area ──────────────────────────────────────────────── */

#wceol-login-wrap .wceol-resend-wrap {
    font-size: 0.88em;
    color: #777;
    margin: 0;
    min-height: 1.4em;
}

#wceol-login-wrap .wceol-resend-wrap a {
    font-weight: 500;
}

/* ── Lost password — reset Astra float/negative-margin ───────── */

#wceol-email-step .woocommerce-LostPassword,
#wceol-email-step .lost_password {
    float: none;
    clear: both;
    margin-top: 0;
    text-align: right;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media ( max-width: 480px ) {
    #wceol-login-wrap .wceol-otp-digit {
        width: 40px;
        height: 46px;
        font-size: 1.2em;
    }

    #wceol-login-wrap .wceol-otp-inputs {
        gap: 4px;
    }
}
