/*
 *     
 * @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{
  background-color: white;
}

.user-form .field{
  padding: 5px;
  background-color: lightgray;
}

.user-form .fiel label{
  display: inline-block;
  width: auto;
}

.user-form .field input{
  display: inline-block;
}

.user-form input[type=button]{
  width: 3cm;
  border-radius: 60px;
  background-color: greenyellow;
  margin-top: 10px;
  border-style: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

header {
  display: flex;
  align-items: center; /* Align the items vertically in the center */
}

a {
  text-decoration:none;
  color: black;
}

header img:hover{
  transform: scale(1.1);
}

header h1{
  margin-left: 10px;
}
header h1:hover{
  transform: scale(1.1);
}