.contact-section {
    font-size: calc(var(--overall-size) * 0.5);
    background-color: #f2f2f2;
    padding-top: 5vh;;
}

.contact-section form {
    padding: 0 2rem;
}

.contact-section h2 {
    color: #333;
    text-align: center;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left:1vw;
}

.contact-section input,
.contact-section textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
}

.contact-section button[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    height: calc(var(--overall-size) * 1.5);
    font-size: calc(var(--overall-size) * 0.7);
    cursor: pointer;
}

/* CHAMPS OBLIGATOIRES */
.contact-section input[required],
.contact-section textarea[required] {
    border-color: rgb(219, 97, 97);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-section small {
    color: rgb(181, 0, 0);
}