.container{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}

.login-form{
  background-color: #fff;
  width: 80%;
  height: auto;
  min-height: 50%;
  box-shadow: 0px 3px 8px 0px orange;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
}

.login-form *{
  margin-top: 20px;
}

.login-form button{
  width: 60%;
}

.login-form input, .login-form select{
  width: 80%;
}

.login-form p{
  font-size: 1.1em;
}

.login-form p.error{
  font-size: 1em;
  color: red;
}

.login-form p a{
  color: orange;
}

.login-form #title{
  color: orangered;
  padding: 10px;
  margin: 0 10%;
  border-radius: 10px;
}

.login-form select{
  color: #666;
}

.login-form .new-device{
  display: none;
}

.login-form .new-device.show{
  display: block !important;
}

@media screen and (min-width: 720px) {
  .login-form{
    width: 30% !important;
    min-height: 70%;
  }
}
