html,body{
    margin: 0;padding: 0;
    width: 100%; height: 100%;
    box-sizing: border-box;
    background: #b89a9a;


}

.header-form{
    position:relative;
    border: 1px solid #234c2f;
    border-left: none; border-right: none;
    background-color: rgba(0,0,0,0.2);
    width: 70%;height: 10%;
    margin-left: auto;margin-right: auto;
    text-align: center;padding: 2%;
}
#container{
    width: 400px;margin: 0 auto;
    margin-top: 10%;
}
#container h1{
    width: 38%;margin: 0 auto;
    padding-bottom: 10px;
}
.formulaire{
    width: 100%;padding: 30px;
    border: 1px solid #f1f1f1;
    background-color: #b89a9a;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2), 0 5px 5px 0 rgba(0,0,0,0.2);
}
.formulaire .zonetext,.formulaire .submit{
    background-color: rgb(124,111,107);
    color: #fff;
    padding: 14px 0;margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}
.formulaire .submit{
    background-color: rgb(27,221,192);
}
.formulaire .submit:hover{
    background-color: #fff;
    color: rgb(27,221,192);
    border: 1px solid rgb(27,221,192);
}

.photohabit{
    width: 100px;height: 100px;
    border-radius: 50%;
    border: 1px solid black;
}
.update img:hover{
    background-color: rgb(27,221,192);
    transform: rotate(30deg);
    transition: all .5s;
    border-radius: 50%;
}
.del img:hover{
    background-color: rgb(223,18,18);
    transform: rotate(30deg);
    transition: all .5s;
    border-radius: 50%;
}