/* Formulaire : design moderne */
.form-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-container h1 {
    font-family: 'Playfair Display', serif;
    color: #b76e79;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-container p {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

form label {
    font-weight: 600;
    color: #333;
}

form input, 
form select, 
form textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #b76e79;
    box-shadow: 0 0 0 2px rgba(183,110,121,0.2);
    outline: none;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #b76e79;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

form button:hover {
    background-color: #a25d6c;
    transform: translateY(-2px);
}

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

    form button {
        width: 100%;
        text-align: center;
    }
}
