.login-container {
  display: flex;
  justify-content: space-between;
  background-color: var(--white);
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
}

.left-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.right-content {
  width: 50%;
}

.illustration {
  background-color: var(--theme-primary-color);
  display: flex;
  justify-content: center;
}

.illustration-image {
  height: 100vh;
}

.logo-image {
  padding: var(--outer-margin-size);
}

.logo {
  max-height: 70px;
}

.login-form {
  align-self: center;
  width: 70%;
}

.form-header {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.form-title {
  margin-top: -1px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  color: var(--text-main-color);
  font-size: var(--font-size-xlarge);
}

.form-subtitle {
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  color: var(--text-desc-color);
  font-size: var(--font-size-normal);
}

.forgot-password {
  color: var(--primary-font-color);
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-medium);
  font-size: var(--font-size-xsmall);
  text-decoration: underline;
}

.footer-text {
  font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
  color: var(--text-desc-color);
  font-size: var(--font-size-small);
  padding: var(--outer-margin-size);
}

.messages {
  padding: 0;
}

.messages li {
  list-style: none;
  text-align: center;
}

.messages li.error {
  color: var(--danger);
}

.messages li.success {
  color: var(--success);
}

@media only screen and (max-width: 800px) {
  .right-content {
    display: none;
  }

  .left-content {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .form-header {
    align-items: center;
    width: 100%;
  }

  .form-title {
    font-size: var(--font-size-large);
  }

  .forgot-password {
    text-align: center;
  }

  .form-subtitle {
    text-align: justify;
  }
}