body {
  background: #F0FAF3;
}

form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 780px;
  width: 100%;
  margin: auto;
  padding: 50px 80px;
  background: #FFF;
  border-radius: 30px;
  text-align: center;
}

.login-box label {
  display: block;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
}

.login-box input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  background: #F8F8F8;
  border: 1px solid #ddd;
  margin-bottom: 30px;
}

#password {
  margin-bottom: 40px;
}

.login-box .login-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.login-header .login-subtitle {
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px){
  form {
    padding: 60px 20px;
    border-radius: 0;
  }
  .login-box .login-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .login-header .login-subtitle {
    margin-bottom: 30px;
  }
  .login-box label {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .login-box input {
    height: 50px;
  }
}