body {
  background-color: #ededed;
  text-align: center;
}


html {
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  width: 400px;
}

form h1 {
  font-family: verdana;
  font-weight: bold;
  font-size: 42px;
}

form input {
  padding: 18px 20px;
  margin: 12px 0;
  font-size: 16px;
  border: 1px solid;
  border-radius: 8px;
  width: 300px;
}

form button {
  font-family: arial;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  width: 90%;
  margin-top: 30px;
  cursor: pointer;
}

form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.field label {
  align-self: flex-start;
  font-family: monospace;
  font-size: 16px;
  font-weight: bold;
  margin: 0 12px;
}

button:hover {
  background-color: #d6d6d6cc;

}


  

