/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 1px;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
    max-width: 780px;
    height: 400px;
}

/* Modal Header */
.modal-header {
    background-color: #003656;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 0px 0px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 40px;
}

/* Close Button */
.close {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1%;
}

    .close:hover,
    .close:focus {
        color: #ccc;
    }

/* Content Section */
.content {
    padding: 20px;
    text-align: center;
}

    .content .header-h4 {
        margin: 20px;
        color: #069edb;
        font-size: 18px;
        max-width: 400px;
        overflow: visible;
        justify-content: center;
    }

/* OTP Input */
.otp-input {
    width: 200px;
    margin: 20px 0;
    text-align: center;
    height: 45px;
    border: none;
    box-sizing: border-box;
    background: #E2E4E7;
    border-radius: 7px;
    min-height: 40px;
    font-size: 25px;
    color: #274472;
}

    .otp-input input {
        width: 100%;
        height: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

/* Submit Button */
.btn-submit {
    background-color: #003656;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

    .btn-submit:disabled {
        background-color: #a9a9a9;
        cursor: not-allowed;
    }

    .btn-submit:hover:not(:disabled) {
        background-color: #011420;
        border-radius: 14px;
    }



/* Resend Link */
.resend-link {
    color: #007BFF;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

    .resend-link:hover {
        text-decoration: underline;
    }

.timer {
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin: 10px 0;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
}

    .timer span {
        font-size: 18px; /* Adjust font size for the timer if needed */
        font-weight: bold; /* Make the timer value bold */
    }
