/*
  But : Exercice 10 – programmation orientée « objets » en JS 
  Auteur : Nathan Clapasson
  Date :   19.05.2022 / V1.0
*/
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 .field {
  padding: 0.5em;
  background: #eeeeee;
}

.user-form .field label {
  display: inline-block;
  width: 4.5cm;
}

• .user-form .field input {
  display: inline-block;
}

.user-form .button {
  display: flex;
  justify-content: center;
}

.user-form input[type=submit] {
  width: 75px;
  background-color: grey;
  color: white;
  margin-top: 10px;
}