/* otp */
#otp-timer-container {
    margin: 15px 0;
    text-align: center;
}

.otp-timer-text {
    font-size: 14px;
    color: #666;
}

.otp-timer-text strong {
    color: #d32f2f;
    font-weight: 600;
}

.resend-otp-button {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.resend-otp-button:hover {
    background-color: #1565c0;
}

.resend-otp-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}