body {
    font-family: Arial, sans-serif;
    background-color: #f0f7f4; /* Light green background color */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff; /* White container background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px; /* Adjust width as needed */
    max-width: 100%;
}

h2 {
    text-align: center;
    color: #2b8a3e; /* Dark green heading color */
    margin-bottom: 20px; /* Spacing below heading */
}

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

label {
    margin-bottom: 8px;
    color: #555555; /* Gray label color */
}

input[type="email"],
input[type="date"],
input[type="time"],
input[type="text"],
button {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    width: calc(100% - 22px); /* Adjust width to accommodate borders */
    box-sizing: border-box; /* Ensure padding is included in width */
}

input[type="email"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="text"]:focus,
button:focus {
    outline: none;
    border-color: #2b8a3e; /* Dark green border color on focus */
}

button {
    background-color: #2b8a3e; /* Dark green button background color */
    color: #ffffff; /* White button text color */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #207530; /* Slightly darker green on hover */
}
