.fondImage {
    padding-top: 100px;
    height: 40vh;
    background: url(images/image2.jpg) no-repeat center / cover;
    text-align: center;
  }
  .titreProd {
      width: 400px;
    display: inline-block;
    margin: 10px auto;
    padding: 10px;
    background: hsla(0, 0%, 100%, 0.75);
    border-radius: 15px;
  }
/* -----------------FORMULAIRE-------------------- */
.inscription{    
    text-align: center;
    padding: 10px 0;
    height: 100%;
    display: block;
    
}
#formulaire h1.ecrire{
    font-size: 50px;
}
.ecrire::after{
    content: "";
    background: #c96805;
    width: 100px;
    height: 5px;
    display: block;
    margin: 2px auto;
}
 form {
     margin-top: 20px;
     width: 50%;
    margin-left: auto;
    margin-right: auto;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }
p {
     margin: 10px;
     font-weight: bold;
 }
 .adress{
    display: flex;
    justify-content: space-between;
 }
 .adress input{
     width: 250px;
     margin-right: 10px ;
 }
 input{
    width: 600px;
    height: 60px;
    background: #EAEAEA;
    border: #c96805 solid 2px;
    border-radius: 6px;
    padding: 15px 30px ;
    margin: 10px 0;
    font-weight: 300;
    font-size: 24px;
    color: #828282;
 }
 textarea {
    height: 180px;
 }
 #formulaire .button {
    width: 250px;
    height: 50px;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    background: #c96805;
    box-shadow: 5px 5px 15px rgba(184, 85, 19, 0.431);
    border-radius: 10px;
    padding: 14px;
    border: none;
    cursor: pointer;
    margin: 5px auto;
 }
 #formulaire .button:hover{
     border: #8b5e46 solid 1px;
     color: #c96805;
     background: #ffffff;
 }
 /* ------------------RESPONSIVE--------------- */
 @media (max-width: 700px){
     .engagement{
         height: 100vh;
     }
    .engagement article h1{
        font-weight: 600;
        font-size: 30px;
        line-height: 40px;
    }
    .engagement article p{
        margin-top: 10px;
        font-size: 16px;
    }
    .engagement article{
        margin: 100px 5px;
        width: 85%;
        padding-bottom: 5px;
    }  
    #formulaire{    
        text-align: center;
        padding: 30px 0;
        height: 100%;
    }
    #formulaire h1.ecrire{
        font-size: 40px;
    }
    input, textarea {
        max-width: 90%;
        font-size: 18px;
        margin-left: 10px;
     }
     #formulaire form{ 
        padding: 0px;
        width: 100%;
    }
    .adress{
        display: flex;
        justify-content: start;
     }
     .adress input{
        width: 200px;
        margin-right: 10px ;
    }
}