/* style.css */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    margin-top: 50px; /* Push the form down */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
}

.card h2 {
    text-align: center;
}

.card-body form {
    display: flex;
    flex-direction: column;
}

.card-body form label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-body form input,
.card-body form select {
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.card-body form button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    align-self: center;
}

.card-body form button[type="submit"]:hover {
    background-color: #0056b3;
}

.link {
    text-align: center;
    margin-top: 15px;
}

.link a {
    text-decoration: none;
    color: #007bff;
}

.link a:hover {
    text-decoration: underline;
}
