/* body{
  background-color: white;
} */
#content .form {
    padding-top: 50px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="number"] {
  width: 100%;
  border: 1px solid lightgrey;
  height: 35px;
  border-radius: 5px;
  padding: 0px 10px;
  box-sizing: border-box;
  font-size: 16px;
}

.form {
    display: grid;
    row-gap: 20px;
    color: white;
  }
  
  .form .block label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .form .block label .required {
    color: red;
    padding-left: 5px;
  }
  
  .form .block .input-hidden {
    border: 1px solid white;
    height: 0px;
    position: absolute;
  }

  .form .button {
    margin-top: 50px;
    display: grid;
    row-gap: 10px;
  }
  
  .form .button button {
    width: 100%;
  }