
.bienvenue {
    display :block;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.503),rgba(0, 0, 0, 0.526)), 
    url('images/contact_50.webp');

    background-size:cover; /* Ajuste l'image pour qu'elle couvre tout le bloc */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
    background-attachment: fixed;
    opacity: var(--Opacity);
    
    border-radius: 20px;
}

.priseContact {
    display: flex;
    flex-direction: column;

    background-color: var(--FondColor2);
    color: var(--TextColor2);
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    padding: 2%;
    margin-left: 5%;
    margin-right: 5%;
}

#contact-form {
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
}


#contact-form input, textarea {
    border-radius: 20px;
    font-size: medium;
    margin-bottom: 2%;

    font-family: var(--PoliceText);
    border: none;
    padding-left: 20px;
    padding: 1% 3% 1% 3%;
}

#contact-form  textarea {
    resize: none;
}

.input {
    color: red;
    padding: 5%;
}

#contact-form button {
    padding: 12px;
    margin-top: 2%;
    font-family: var(--PoliceText);
    
    background: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.1s ease-in-out;
}

#contact-form button:hover {
    background: #0056b3;
    
}

#contact-form button:active {
    transform: scale(0.95);
}


@media screen and (max-width: 900px) {
    #contact-form {
        padding-left: 1%;
        padding-right: 1%;
    }

    .priseContact {
        margin-left: 1%;
        margin-right: 1%;
    }
}