
body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.form-container {
    background-color: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}
input, select, button {
    width: 100%;
    padding: 0.6em;
    margin: 0.5em 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}
button {
    background-color: #007BFF;
    color: white;
    border: none;
}
button:hover {
    background-color: #0056b3;
}
a {
    color: #007BFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
