/* Firebase OTP Verification Styles */

.otp-verification-wrapper {
    margin-top: 10px;
}

.otp-verification-wrapper .send-otp-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.otp-verification-wrapper .send-otp-btn:hover:not(:disabled) {
    background-color: #0056b3;
}

.otp-verification-wrapper .send-otp-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.otp-input-section {
    margin-top: 10px;
}

.otp-verification-wrapper .otp-code-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.otp-verification-wrapper .otp-code-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.otp-verification-wrapper .verify-otp-btn {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.otp-verification-wrapper .verify-otp-btn:hover:not(:disabled) {
    background-color: #218838;
}

.otp-verification-wrapper .verify-otp-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.otp-verification-wrapper .resend-timer {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.otp-verification-wrapper .verification-success {
    padding: 10px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}

/* reCAPTCHA container */
#recaptcha-agent-request,
#recaptcha-tour-request {
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .otp-verification-wrapper .send-otp-btn,
    .otp-verification-wrapper .verify-otp-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .otp-verification-wrapper .otp-code-input {
        padding: 10px;
        font-size: 14px;
    }
}
