html{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.column{
    position: relative;
    top: 10px;
    display: flex;
    flex-direction: column;
}

.content{
    margin-bottom: 0px;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content .title{
    padding-left: 50px;
    width: 85%;
    position: relative;
    top: -10px;
    margin-top: 20px;
    margin-bottom: 0px;
    color: #0cc753;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: solid 2px #b2b2b2;
    font-size: 22px;
}

.section{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    margin : 0px;
}

.content p{
    color: rgb(0, 0, 0);
    font-size: 18px;
}

/*formulaire*/
form{
    width: 100%;
    
    }

.form{
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
}

.from-content{
    width: 100%;
    padding: 20px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;

}

legend{
    margin-left: 50px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
    align-self: flex-start;
    color: #000000;
}
.link{
    color: #068b39;
}
.link:hover{
    color: #0cc753;
}

label{
    align-self: flex-start;
}
input{
    padding-left: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-right: 60px;
    background-color: ivory;
    width: 250px;
    height: 25px;
    border-radius: 5px;
    border : 1px solid #d4d4d4;
    color: #303030;
    font-size: 16px;
    font-weight: 600;
}
input:focus { 
    outline: none !important;
    border : 1px solid #696969;
    box-shadow: 0 0 2px #696969;
}


#button-submit{
    background-color: #0cc753;
    width: 60%;
    height: 50px;
    margin-top: 30px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    color: white;
    font-size: 20px;
}
#button-submit:hover{
    background-color: #0fdb5d;
}

#commentaire{
    padding: 10px;
    width: 100%;
    margin-top: 0px;
    resize: none;
    margin-top: 10px;
    border-radius: 5px;
    border : 1px solid #a2a2a2;
    color: #303030;
    font-size: 16px;
    font-weight: 600;
}
#commentaire:hover{
    border : 1px solid #696969;
    box-shadow: 0 0 2px #696969;
}
#commentaire:focus { 
    outline: none !important;
    border-color: #0cc753;
    box-shadow: 0 0 5px #0fdb5d;
}

#champs-obligatoire-txt{
    color: rgb(255, 0, 0);
    font-size: 12px;
    position: relative;
    top : 20px;
    right: 50px;
    align-self: flex-end;
}

/*formulaire fin*/


@media only screen and (max-width: 900px) {
    .row{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .column{
        justify-content: center;
        align-items: center;
    }
    .section{
        flex-direction: column;
    }
    .content p{
        color: rgb(0, 0, 0);
        font-size: 16px;
    }
    legend{
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 500px) {
    .content{
        margin-top: 0;
      }
    .content .title{
        padding-left: 10px;
    }
    .content p{
        color: rgb(0, 0, 0);
        font-size: 16px;
    }
legend {
    margin-left: 0px;
    }
    legend p{
        
        font-size: 13px;
        }

}