/*
 * Style de la vue index.html    
 * @author prénom + nom
 * @version 1.0 / date
 *
*/
body {
  background-color: grey;
}

.user-form {
  background-color: white;
  width: 40%;
  padding: 1em;
  border: 1px solid black;
  font-family: Verdana, Arial, serif;
}
.user-form .field{
  padding: 5px;
  background-color: gainsboro;
}
.user-form .field label{
  display: inline-block;
  width: 25%;
}
.user-form .field input{
  display: inline-block;
}

#valider{
  width: 10%;
  border-radius: 10pt;
  background-color: greenyellow;
  margin-top: 10px;
}