/*
 *     
 * @author prénom + nom
 * @version 1.0 / date
 *
*/
body {
  background-color: grey;
}

#container {
  background-color: white;
  width: 90%;
  padding: 1em;
  border: 1px solid black;
  margin: auto;
  font-family: Verdana, Arial, serif;
}
.user-form {
  width: 500px;
  background-color: white;
  padding: 10px;
}
/*(padding et couleur de fond) */
.user-form .field {
  padding: 10px;
  background-color: lightgray;
  display: flex;
  font-weight: bold;
} 
/*(inline-block et largeur) */
.user-form .field label  {
  display: inline-block;
}
/*(inline-block) */
.user-form .field input {
  display: inline-block;
  margin-left: auto;
  margin-right: 50px;
  
}  
.user-form .button {
  display: flex;
  justify-content: center;
}
.user-form input[type=submit] {
  margin-top: 10px;
  background-color: rgb(167, 167, 167);
  color: white;
  font-weight: bold;
  padding: 4px;
  border: none;
}

.user-form input[type=submit]:hover {
  background-color: lightgray;
  color: rgb(167, 167, 167);
}
legend {
  font-weight: bold;
}