.content{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.content > *{
  height: 65vh;
  width: 65vh;
  margin: 10vh;
}

.content > img{
  border-radius: 1vh;
}

@media (max-width: 1500px){
  .content > *{
      margin: 0;
  }
  
  .content > img{
      display: none;
  }    
}

.content > #form{
  padding: 2vh 2vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

#form > h1{
  font-size: 5vh;
  font-family: 'Nunito', sans-serif;
}

#form > .input-control{
  width: 100%;
}

.input-control > input{
  width: 100%;
  font-size: 2vh;
  outline: none;
  border: 1px solid gray;
}

.input-control > input{
  height: 3vh;
  border-width: 0 0 1px 0;
  text-indent: 1vh;
  padding: 0;
}

#form > button{
  height: 7vh;
  width: 100%;
  color: white;
  background-color: #3A70D1;
  border: none;
  border-radius: 1vh;
  font-size: 3vh;
  text-decoration: none;
}

#form > button:hover{
  background-color: orange;
  cursor: pointer;
  transition: 0.2s 0.1s ease-in;
}

/* Validation error */

.input-control > .invalid{
  border-color: red;
}

.input-control .invalid::placeholder{
  color: red;
}

.input-control > .error{
  padding: 0;
  margin: 0;
  height: 1.4vh;
  font-size: 1.4vh;
  color: red;
}