/* ================================================================
   WooCommerce OTP Login – Minimal Styles
   ================================================================ */

.wc-otp-container {
    max-width: 450px;
    margin: 20px auto;
}

.wc-otp-step {
    text-align: center;
}

.wc-otp-step[hidden] {
    display: none;
}

.wc-otp-field {
    margin-bottom: 20px;
    text-align: left;
}

.wc-otp-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.wc-otp-field input {
    width: 100%;
}

/* Big OTP input */
#wc-otp-code {
    text-align: center;
    font-size: 24px;
    letter-spacing: 12px;
    font-weight: 700;
    font-family: monospace;
}

.wc-otp-btn {
    width: 100%;
    margin-top: 10px;
}

.wc-otp-notice {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 4px;
    font-size: 14px;
}

.wc-otp-notice.is-error {
    background-color: #fcebea;
    color: #cc1f1a;
    border: 1px solid #efb3af;
}

.wc-otp-notice.is-success {
    background-color: #e3f9e5;
    color: #1f9d55;
    border: 1px solid #a8eeb1;
}

.wc-otp-resend {
    margin-top: 20px;
    font-size: 13px;
}

.wc-otp-back {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    text-decoration: underline;
}

.wc-otp-loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: otpSpin 1s linear infinite;
    margin: 15px auto;
}

@keyframes otpSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
