/*ScrewWheelCertLogin.css*/
/*https://www.w3docs.com/snippets/css/how-to-create-responsive-login-form-in-navbar-with-css*/

h1 {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#form {
  height: 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

input {
  padding: 10px 20px;
  background-color: #fff;
  color: #111;
  transition: .3s;
}

input:hover {
  background-color: #ddd;
  transition: .1s;
}

button {
  height: 5vh;
  padding: 18px 25px;
  margin-top: 20px;
  border-radius: 10px;
  border: 0;
  box-sizing: border-box;
  background-color: #666;
  color: white;
  transition: .3s;
  line-height: 0vh;
}

button:hover {
  background-color: #222;
  transition: .1s;
}

#errorText {
  text-align: center;
}

#errorText.error {
  color: red;
}

#errorText.ok {
  color: green
}