
/* Style général du formulaire */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: thick double #E0C62B;
    border-radius: 8px;
    color: #193B1D;
}

/* Style des champs de saisie */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #193B1D;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Style des boutons */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Style pour le choix déroulant */
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #193B1D;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: white;
}

/* Style pour les messages d'erreur */
.error-message {
    color: red;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Style pour les messages de succès */
.success-message {
    color: green;
    margin-top: -10px;
    margin-bottom: 10px;
}

#candidature {
    border: #193B1D;
    border-style: groove;
    align-items: center;
}
