*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

div{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

div form{
  background-color: gray;
  display: flex;
  flex-direction: column;
  width: 40%;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: white;
}

section{
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
}
section label{
  font-size: 1.2rem;
  
}
section input{
  font-size: 1.2rem;
  border-radius:5px;
  border: none;
  padding: 5px;
}
form button{
  padding: 10px 25px;
  font-size: 1.2rem ;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}