label {
    font-size: 22px;
}

.formulaire {
    background-image: url(../images/bg-footer.webp);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.formulaire::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-footer.webp);
    z-index: -1;
}

.formulaire::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1.5), rgba(0, 0, 0, 0));
    z-index: 1;
}

.formulaire .contenair-form {
    position: relative;
    z-index: 2;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.display-name {
    display: flex;
    flex-direction: column;
    width: 49%;
}

.form-name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.formulaire h3 {
    font-size: 30px;
    padding: 40px;
    margin-top: 0;
}

.w-100 {
    width: 100%;
}

form {
    width: 100%;
    color: #e6aa68;
    font-weight: bold;
}

.form {
    display: flex;
    justify-content: center;
    width: 60vw;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
    width: 100%;
    box-sizing: border-box;
}

.btn-form {
    padding: 10px 20px;
    background-color: #e6aa68;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-form:hover {
    background-color: #1d1e18;
    color: #e6aa68;
}

.textalign {
    text-align: center;
}

/* ************************************* */




