/* ========================================
   OTP VERIFICATION PAGE - SPECIFIC STYLES
   ======================================== */

/* OTP Container */
#otpVerification .auth-container {
    max-width: 500px;
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

#otpVerification .auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

#otpVerification .auth-title {
    font-family: 'TTJenevers', 'AZURESans', serif;
    font-size: 2.8rem;
    font-weight: 500;
    font-style: italic;
    color: var(--azure-gold);
    margin-bottom: 0.5rem;
}

#otpVerification .auth-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* OTP Input Field */
#otpVerification .otp-input {
    padding: 1rem;
    border: 1.5px solid #e0e6ed;
    border-radius: 8px;
    background: #f8f9fa;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.4rem;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--azure-primary);
    transition: all 0.3s ease;
}

#otpVerification .otp-input:focus {
    outline: none;
    border-color: var(--azure-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(12, 67, 106, 0.1);
}

#otpVerification .otp-input::placeholder {
    letter-spacing: 0.6rem;
    color: #ccc;
    font-weight: 400;
}

/* OTP Error Message - Simple red text */
#otpVerification .auth-error span {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    line-height: 1.4;
    text-transform: none;
}

/* Mobile Specific - OTP */
/* Increased breakpoint to 960px to handle browser zoom */
@media (max-width: 960px) {
    #otpVerification .auth-container {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        padding: 2.5rem 1.75rem 2rem;
    }

    #otpVerification .otp-input {
        padding: 1.1rem;
        font-size: 1.3rem;
    }
}
