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

.formulaire-champs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-transform: uppercase;
}

input, select, textarea {
    height: 3rem;
    padding: 1rem;
    background-color: white;
    border: 1px solid var(--gris-clair);
    box-shadow: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Grold Rounded';
    font-weight: 200;
}

#message {
    min-height: 10rem;
    max-width: 100%;
    min-width: 100%;
}

.select-container {
    position: relative;
    display: flex;
    align-items: center;
}

.select-container::before {
    content: "▾";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1rem;
    color: var(--texte);
}

.select-container select {
    width: 100%;
    height: 100%;
    color: #757575;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.error {
    color: var(--rouge-coq);
    text-transform: none;
}

.formulaire-validation,
.button__container {
    display: flex;
    justify-content: center;
}

.formulaire-validation {
    margin-top: 4rem;
}

button {
    width: 14rem;
}

button:hover {
    background-color: var(--terre-de-sienne);
    color: white;
}

.contact_wip {
  margin: 2rem;
}

.form-container {
  display: none;
}
