/* Le code CSS de la démo */


.toolbar{
	padding:1em 2em ;
	border : 1px solid rgba(0,0,0,0.2);
	border-radius: 0.5em; 
	display:flex;
	justify-content:center;
}



fieldset{
	margin : 2em 0;
	border-radius: 0.5em; 
	padding : 1em;
	font-size : 1.6rem;
	border : solid 1px rgba(0,0,0,0.2);

}

legend{
    padding : 0 1em;
    font-size:1.8rem;
}

.field {
    display:flex;
    justify-content:space-between;
    padding : 1em 0;
    
}

.field + .field{
    border-top : solid 1px rgba(0,0,0,0.2);
}
/*.bottom{*/
/*    border-bottom : none;*/
/*}*/

.field label{
    padding : 0.5em;
    width:30%;
    /*text-align : left;*/
    
}

.field input{
    width : 70%;
}

input, select, textarea {
	border-radius: 0.5em; 
	padding:0.5em 1em ;
	font-size : 1.6rem;
	color : #333;
	background-Color:#fff;
	border : solid 1px #ccc;
	
}

select, textarea{
    width : 100%;
    margin : 8px 0;
}

button{
    padding : 1em 2em;
    font-size :1.6rem;
    color : #fff;
    background-Color : #DD5735;
    border : solid 1px #DD5735;
    border-radius:0.5em;
    cursor: pointer;
    
}

button:hover{
    text-decoration : none;
    color :#DD5735;
    background-Color : #fff;
    
    
}

