/* style_contact.css - VERSION CORRIGÉE */

/* On ne touche plus au body pour ne pas casser le header/footer */
main.contact-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 80vh;
    /* Pour pousser le footer vers le bas */
    padding: 60px 0;
}

.contact-card-custom {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
}

h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* On utilise les classes Bootstrap pour les inputs, 
   mais on peut garder quelques styles personnalisés ici */
.contact-page input:focus,
.contact-page textarea:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.btn-contact {
    background-color: #4a90e2;
    color: white;
    border: none;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #357abd;
    color: white;
}