.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.4);
}

.modal-content {
    background-color: lightskyblue; /* Changed the background color */
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
}

.otp-label {
    font-size: 1.5rem; /* You can adjust the size as needed */
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    display: none;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Styling for the Login button */
input[type="submit"] {
    padding: 10px 20px; /* Makes the button larger */
    color: blue;       /* Text color */
    background-color: white; /* Background color */
    border: 2px solid blue; /* Border color */
    cursor: pointer;   /* Changes the mouse pointer on hover */
    transition: all 0.3s ease; /* Adds a smooth transition for the hover effect */
}

/* Rollover effect for the button */
input[type="submit"]:hover {
    color: white;
    background-color: blue;
}
