/* section contact  */


.section-contact{
    display: flex;
    flex-direction: wrap;
    justify-content:space-around;
    padding: 30px;
    background-color: #FFFAFA;
}

section .text-contact{
    width : 40%;
    margin : auto;
    margin-left : 10%;
}

section .text-contact h1{
    margin-left :0%;
    margin-right : 4%;
}

section .text-contact p{
    margin-bottom : 50px;
}

section .text-contact span{
    color : #FD8736;
}

section .text-contact a{
    color : #FD8736;
}

.formulaire{
    background-color:#FD8736;
    border-radius : 20px;
    width : 40%;
    padding : 30px;
    margin-right : 10%;
}

form .formulaire-contact{
    display : flex;
    flex-direction : column;
    flex-wrap : wrap;
}

form .base{
    display: flex;
    /* flex-direction: column; */
    flex-wrap : wrap;
    align-items: center;
    justify-content: space-between;
}

form .base input{
    padding : 10px 5px 10px 30px;
    margin-top : 3px;
    margin-bottom : 20px;
    border-radius : 10px;
    border : none;
    background : #fff8e1 ;
    outline :none;
}

form .base input:focus{
    padding : 10px 5px 10px 30px;
    margin-top : 3px;
    margin-bottom : 20px;
    border-radius : 10px;
    border : 2px solid #185090;
    background : #fff8e1 ;
}

form .base i{
    position : absolute;
    left : 0px;
    top : 25px;
    padding : 5px;
    color : #185090;
}

form .base .entre{
    position : relative;
    display : flex;
    flex-direction : column;
    flex-wrap: wrap;
}

form .checkbox{
    margin-bottom: 20px;
}

form .checkbox .titre{
    margin-left : 0px;
}

form .checkbox .options{
    display : flex;
    flex-direction : row;
    justify-content: space-around;
    flex-wrap : wrap;
}

form .checkbox .option{
    margin-right : 10px;
}

form .checkbox .option .check{
    display : flex;
    gap : 12px;
    align-items: center;
}

form .checkbox .option .check input{
    display : none;
}

form .checkbox .option .check span{
    width : 20px;
    height: 20px;
    border-radius : 5px;
    border : 1px solid #fff8e1;
    background-color: #fff8e1;
}

form .checkbox .option .check input:checked + span{
    background-color: #185090;
    border : 1px solid #185090;
}


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

form .demande textarea{
    padding : 10px 10px 100px 10px;
    margin-top : 3px;
    border : none;
    background : #fff8e1 ;
    margin-bottom : 20px;
    border-radius : 10px;
    outline :none;
}

form .demande textarea:focus{
    padding : 10px 10px 100px 10px;
    margin-top : 3px;
    border : none;
    background : #fff8e1 ;
    margin-bottom : 20px;
    border-radius : 10px;
    border : 2px solid #185090;
    background : #fff8e1 ;
}

form .contact{
    margin-top : 10px;
}

form .politique-confidentialite .check {
    display : flex;
    gap : 12px;
    align-items: center;
}

form .politique-confidentialite .check input{
    display : none;
} 

form .politique-confidentialite .check span{
    width : 32px;
    height: 20px;
    border-radius : 5px;    
    border : 1px solid #fff8e1;
    background-color: #fff8e1;
}

form .politique-confidentialite .check input:checked + span{
    background-color: #185090;
    border : 1px solid #185090;
}

form .lien-politique-confidentialite{
    color : #185090;
}

form .bouton{
    text-align: right;
}

form .bouton .contact{
    color: White;
    background-color: #185090;
    border: none;
    border-radius: 25px;
    padding-left : 20px;
    padding-bottom: 10px;
    padding-right : 20px;
    padding-top: 10px;
    font-size:medium;
    outline : none;
    cursor :pointer;
    transition : background-color 0.5s;
}

form .bouton .contact:hover{
    color: black;
    background-color: #fff8e1;

}

form .message_erreur{
    color : red;
    font-weight : bold;
    margin-bottom : -10px;
}

@media screen and (max-width : 780px){
    .section-contact{
        flex-wrap : wrap;
    }
    .section-contact .text-contact{
        width : 90%;
        margin : auto;
    }

    .section-contact .formulaire{
        width : 80%;
        margin: auto;
    }

    form .base{
        justify-content: left;
    }

    form .base input{
        width : 100%;
    }

    form .checkbox .options{
        margin : 0px;
        flex-direction : column;
    }
    form .checkbox .check{
        margin-bottom : 10px;
    }

}