/*formulaire*/


#myform label { display:inline-block; width:160px;  }
#myform input { display:inline-block; width:200px; text-transform: capitalize; }
#myform radio1 { display:block; width:110px; float: left; }
#myform mySelect { display:block; width:200px;  }
#myform textarea { display:block; width:300px;  }

/* Titres centraux */
.main{
    font-family: Verdana, Sans-Serif;
}

.main_title{
    
    font-size: 50px;
    text-align: center;
    text-shadow: 5px 5px 10px white;
}
.second_title{
    
    font-size: 30px;
    text-align: center;
    text-shadow: 5px 5px 10px white;
}
.third_title{
    
    font-size: 25px;
    text-align: center;
    
}
.commentaire{
    min-height:60px;
}
form{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap:5vw;
    margin-left:5vw; 
    max-width:80vw;
}
.div1{
    margin-top:2em;
}
.div4{
    margin-top:1em;
}
.photo{
    margin-top:2em;
}
img{
    max-width:25vw;
}
.champs{
    
    margin-top: 2em;
    font-weight: bold;
    max-width: 400px;
}
.g-recaptcha{
    margin: 30px 0px 30px 0px;
}
.button{
    height:40px; 
    width:200px; 
    font-weight : bold; 
    color:#FFFFFF; 
    cursor:pointer; 
    font-size:16px; 
    background-color:#281EE8;
}
.retour{
    height:40px; 
    width:200px; 
    font-weight : bold; 
    color:#FFFFFF; 
    cursor:pointer; 
    font-size:16px; 
    background-color:#FF0606;
}

/* Responsive mobile */

@media (max-width: 500px) {
    
    form{
        display:grid;
        grid-template-columns: 1fr;
        margin-left:10vw; 
        max-width:80vw;
    }
    .champs{
        text-align:center;
        margin-top:1em;
        font-weight: bold;
        display:block;
        max-width: 400px;
    }
    .photo{
    display:none;
}
    #myform textarea { display:block; width:300px; height:60px; }
}
