body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f8f9fa; /* Light background color */
}

h1 {
    color: #333; /* Darker text for header */
}

label {
    font-weight: bold;
}

textarea {
    width: 60%; /* Full width */
    height: 150px; /* Fixed height */
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    resize: none; /* Disable resizing */
}

input[type="date"],
input[type="time"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */    
}

button {
    background-color: #74a3c7; /* Blue background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px 20px; /* Vertical and horizontal padding */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition */
}

button:hover {
    background-color: #447eaa; /* Darker blue on hover */
}

.g-recaptcha {
    margin-bottom: 10px; /* Space below reCAPTCHA */
}