/* FORMULAIRE */
.form-section {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}


.form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-intro {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.4rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}

form textarea {
    min-height: 100px;
    resize: vertical;
}

form .btn {
    width: 100%;
    margin-top: 1.5rem;
}
