/* Center the form container */
.container {
    width: 100%;
    max-width: 400px; /* Perfect width */
    margin: 50px auto; /* Center it */
    padding: 20px;
    background: rgba(255, 255, 255, 0.95); /* Light background */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center content */
    width: 100%;
    max-width: 380px;
}

/* Style input fields & dropdowns */
form input, form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0; /* Even spacing */
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box; /* Fixes weird spacing issues */
}

/* Style date picker */
form input[type="date"] {
    cursor: pointer;
    text-transform: uppercase;
    color:black;
}

/* Fix button alignment */
form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Nice blue */
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 500px) {
    .container {
        width: 90%;
    }
}
