/* General Form Styling */
form {
    width: 400px; /* Adjust the width as needed */
    background-color: #f5f5f5; /* Light gray background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 30px 20px;
    text-align: left;
    font-family: Arial, sans-serif; /* Change to desired font */
    margin: auto;
    position: relative;
}

h1 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #444; /* Dark gray text color */
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: calc(100% - 20px); /* Ensure consistent padding */
    padding: 8px 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded edges */
    box-sizing: border-box; /* Consistent padding */
}

textarea {
    height: 120px;
    resize: none; /* Disable resizing */
}

#submit-button {
    background-color: #662D91;
    color: #000;
    border: none;
    border-radius: 10px; /* Rounded corners */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 0 auto; /* Center-align button */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

#submit-button:hover {
    background-color: #e6b300; /* Darker yellow on hover */
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    background-color: transparent;
    border: none;
    color: #888; /* Gray color for the close button */
}

.close-button:hover {
    color: red;
}
