/* ========== Apparence générale du formulaire ========== */

#main {
    padding-top: 100px; /* ou 80px selon la hauteur exacte du header */
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Breadcrumb */
#breadcrumbs {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.bd-etape {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
}

/* Carte contenant le formulaire */
.card {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.card h3,
.card h5 {
    color: #343a40;
}

/* Champs de formulaire */
form .form-group {
    margin-bottom: 1rem;
}

form .form-control {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    box-shadow: none;
    border: 1px solid #ced4da;
}

form label {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #495057;
}

/* Bouton de soumission */
button.btn-success {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button.btn-success:hover {
    background-color: #218838;
}

/* Alertes */
.alert {
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 2rem 1rem;
    }
}
