form {
    max-width: 500px;
    margin: auto;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3); /* Ajoute une ombre plus marquée autour du formulaire */
}

label {
    display: block;
    margin-bottom: 5px;
    
}

input, select, textarea, button {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #0f1823;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #1d2631;
}   

form h2{
    text-align: center;
    margin-bottom: 30px;
}