body, html {
  padding: 0px;
  margin: 0px;
}

.fixed-ratio {
  background-color: #0057bc;
}

#app {
  height: 100vh;
  width: 100vw;
  background-color: #0057bc;
}

.login-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1rem;
}
.login-form-container .login-form {
  height: 27rem;
  max-width: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1rem;
  padding-bottom: 5rem;
}
.login-form-container .login-form .login-logo {
  width: 100%;
}
.login-form-container .login-form .login-logo img {
  width: 100%;
}
.login-form-container .login-form .login-input {
  width: 100%;
  font-family: Galano Grotesque Bold;
}
.login-form-container .login-form .login-input input {
  margin-top: 5px;
  width: 98%;
  background: #0057bc;
  border: 1px solid white;
  height: 2rem;
  outline: none;
  color: white;
  font-size: 1rem;
  font-family: Galano Grotesque;
  padding-left: 5px;
}
.login-form-container .login-form .login-input select {
  margin-top: 5px;
  width: 100%;
  background: #0057bc;
  border: 1px solid white;
  height: 2.2rem;
  outline: none;
  color: white;
  font-size: 1rem;
  font-family: Galano Grotesque;
}
.login-form-container .login-form .login-input select option {
  background: rgba(0, 0, 0, 0.5);
}
.login-form-container .login-form .warning {
  color: red;
  font-size: 1rem;
  font-family: Galano Grotesque;
}
.login-form-container .login-form .login-button {
  width: 7rem;
}
.login-form-container .login-form .login-button input, .login-form-container .login-form .login-button button, .login-form-container .login-form .login-button submit {
  width: 100%;
  border: none;
  padding: 0;
}
.login-form-container .login-form .login-button input img, .login-form-container .login-form .login-button button img, .login-form-container .login-form .login-button submit img {
  width: 100%;
}

@media screen and (min-width: 640px) {
  .login-form-container .login-form {
    padding-bottom: 7rem;
  }
  .login-form-container .login-form .login-logo {
    width: 450px;
  }
}
