/*
 *     
 * @author Bernardo Simoes
 * @version 1.0 / 15.05.2024
 *
*/
body {
  background-color: gray;
}

#container {
  background-color: white;
  width: 90%;
  padding: 1em;
  border: 1px solid lightblue;
  margin: auto;
  font-family: Verdana, Arial, serif;
}

.user-form {
  background-color: white;
}

.user-form .field {
  padding: 10px;
  background-color: lightgray;
}


.user-form .field label {
  display: inline-block;
  width: 35%;
}

.user-form .field input {
  display: inline-block;
}


.user-form input[type=submit] {
  width: 20%;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: lightgray;
}


fieldset {
border-color: #ebebeb;
}

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);
}