div.login-container {
  display: flex;
  height: 100vh;
}

div.login-feature-image {
  width: 40%;
  height: 100vh;
  background-image: url("/static/img/goodspring.jpg");
  background-size: cover;
  background-position: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1.login-feature-text {
  color: white;
  font-size: 60px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

main.login-form-container {
  width: 60%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-tertiary-bg);
}

form.login-form {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

#login-alert p {
  margin: 0;
}

@media (max-width: 767.98px) {
  div.login-container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  div.login-feature-image {
    width: 100%;
    height: 40vh;
    order: 2;
  }

  main.login-form-container {
    width: 100%;
    height: auto;
    flex: 1;
    padding: 2rem 0;
    order: 1;
  }
}
