﻿.form-heading {
    font-size: 25px;
    color: #275a9c;
    font-weight: 600;
}

.otp-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .otp-input:focus {
        outline: none;
        border-color: #275a9c;
        box-shadow: 0 0 8px rgba(3, 94, 133, 0.3);
    }

    .otp-input:disabled {
        background-color: #f5f5f5;
    }

.timer-text {
    color: #6c757d;
    font-size: 14px;
    margin-top: 5px;
}

/* Disable anchor link when it has disabled class */
#btnResendOtp.disabled {
    color: #6c757d !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.6;
    text-decoration: none;
}
.link-underline {
    text-decoration: underline;
}

    .link-underline:hover {
        text-decoration: underline;
    }

