/* Styles for the modal container */
form {
    color: #09577a;
}

.formModal {
    display: none; /* Hide the modal by default */
    position: fixed;
    z-index: 999; /* Set a high z-index to display the modal above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black background */
}

/* Style for the modal content */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Center the modal vertically and horizontally */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 80%;
    max-width: 500px; /* Set maximum width for the modal */
}

/* Style for the close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.submit-contact-button {
    background: #1cafec;
    border: 0;
    padding: 10px 20px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: -webkit-fill-available;
}

/* Additional styles for the form elements can be added here */
/* For example: input fields, labels, buttons, etc. */
