body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #87CEEB; /* Light blue background */
    color: #333; /* Dark text color */
}

.container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: #fff; /* White background for the form */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

h2 {
    text-align: center;
    color: #008b8b; /* Dark cyan for heading */
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input, select {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners for inputs */
}

input:focus, select:focus {
    border-color: #008b8b; /* Highlight border on focus */
    outline: none; /* Remove default outline */
}

button {
    padding: 10px;
    background-color: #008b8b; /* Dark cyan for button */
    color: white; /* White text color */
    border: none;
    border-radius: 5px;
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px;
}

button:hover {
    background-color: #005f5f; /* Darker shade on hover */
}

#message {
    text-align: center;
    margin-top: 20px;
    color: red; /* Red for error messages */
}
