/*
  But : Stylise une page HTML.    
  Auteur : Alexandre Haymoz
  Date :   18.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 label {
  display: inline-block;
  width: 10em;
}

.user-form .field input {
  display: inline-block;
}

.user-form .field {
  padding: 0.5em;
  background: #eeeeee;
}

.user-form .button {
  text-align: center;
}

.user-form input[type=submit] {
  background-color: grey;
  margin-top: 7pt;
  height: 30px;
  font-size: 14pt;
  width: 80px;
  color: white;
}