body {
    font-family: 'Merriweather', serif;
    background-color: #f2f2f2;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 50px auto; /* Centre le formulaire verticalement et horizontalement */
    padding: 30px;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-container p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.btn-primary {
    width: 100%;
    background-color: #4CAF50;
    border: none;
    padding: 10px;
    font-size: 1rem;
    color: white;
}

.btn-primary:hover {
    background-color: #45a049;
}

footer {
    background-color:000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}