

    label {
        margin-top: 10px;
        font-size: 16px;
    }

    input, select, textarea {
        width: 80%;
        max-width: 400px;
        margin: 5px 0 0px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    textarea {
        resize: vertical;
    }

    /* Submit button styling */
    button[type="submit"] {
        background-color: #015FC9; /* Button background color */
        color: white; /* Text color */
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
    }

    /* Center button and give margin for better spacing */
    button[type="submit"] {
        display: block;
        margin: 20px auto; /* Centers horizontally */
    }

    /* Hover effect */
    button[type="submit"]:hover {
        background-color: #004aa6; /* Darker blue */
    }

 /* Modal container styling */
 .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scrolling for long content */
    background-color: rgba(0, 0, 0, 0.5); /* Black with transparency */
}

/* Modal content styling */
.modal-content {
    background-color: #fff;
    margin: 10% auto; /* Center the modal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Adjust width as needed */
    max-width: 500px; /* Maximum width for the modal */
    border-radius: 8px;
}

/* Close button styling */
.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}
