.auth-page_wrapper {
  display: flex;
  background-color: var(--color-fourth-bg);
}

.auth_image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #85e9e1;

  img {
    width: 70%;
    height: auto;
  }
}

.auth-page_content {
  display: flex;
  justify-content: center;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.auth-page_title {
  color: var(--e-global-color-primary);
  font-family: var(--font-family-secondary);
  font-size: 2.5em;
  margin: 0;
  text-align: center;

  strong {
    font-weight: 800;
  }

  em {
    font-weight: 600;
  }
}

.auth-page_subtitle {
  color: var(--color-primary-text);
  font-family: "Montserrat", Sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 1.5em 0 10px;
  text-align: center;
}

.arm-form-container {
  max-width: 100%;
}

@media (max-width: 768px) {
  .login-page {
    .auth_image {
      display: none;
    }
  }

  .forgot-password-page {
    .auth_image {
      width: 100%;
      img {
        object-fit: cover;
        max-height: 25vh;
      }
    }

    .auth-page_wrapper {
      flex-direction: column;
      padding: 0 3%;
    }
  }

  .auth-page_content {
    width: 100%;
    box-sizing: border-box;
  }
}
