/* CSS for the modal */
.reqmodal {
    display: none;
    position: fixed;
    top: 40%;
    left: 10%;
    width: 60%;
    height: 38%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Adjust the value based on your needs */
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -60%);
    background-color: rgb(59, 59, 155); /* Blue background color */
    padding-left: 5px;
    border: 1px solid #ccc;
    color: #333; /* Text color */
   
}


.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff; /* Close button color */
}

/* Style the form fields */


form input[type="text"],
form input[type="email"],
form textarea {
    width: 70%;
    padding: 5px;
    margin-top: 2px;
    margin-left: 15px;
    border: none;
    background-color: #fff; /* Gray text field background color */
    color: #333; /* Text field text color */
    border-radius: 5px;
}

form input[type="submit"] {
    width: 70%;
    padding: 5px;
    margin: 5px;
    background-color: rgb(59, 59, 155); /* Blue background color for the submit button */
    color: #fff; /* Submit button text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

