/*
 * Style de la vue index.html    
 * @author Tiago Fonseca
 * @version 1.0 / 13.05.2024
 *
*/
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: 20%;
  background-color: grey;
  color: white;
  margin-top: 10px;
}
.button{
  text-align: center;
}