.login-page-container {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 100%;
}
body {
  background-image: linear-gradient(
    rgb(4, 0, 25),
    rgb(7, 2, 48),
    rgb(15, 8, 79),
    rgb(22, 51, 122),
    rgb(64, 102, 163),
    rgb(82, 180, 225)
  ) !important;
  min-height: 100vh;
  overflow: hidden;
}

html {
  box-shadow: 0 90px 90px rgb(0, 0, 0, 0.25) inset,
    0 -160px 200px rgb(0, 0, 0, 0.25) inset !important;
}

div {
  transition: unset;
}

.main {
  min-height: 83vh;
}

.login-page-container > div.cute-animals {
  grid-area: cute-animals;
  display: flex;
  img {
    max-width: 70vh;
    max-height: 70vh;
    margin: auto;
  }
}

.login-page-container > div.form {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  margin-right: 50px;
  margin-left: auto;
}
.form-container {
  /* background-color: #021a2e; */
  display: flex;
  flex-direction: column;
  background: radial-gradient(rgb(255 255 255 / 12%), #02082e);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.096);
  border-style: outset;
  color: rgb(185, 186, 195);
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 94%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left;
}
.checkbox-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  label {
    font-size: 1.2rem;
  }

  .checkbox-row {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .agree-error {
    font-weight: 900;
    color: red;
    margin-left: 10px;
    display: none;
  }
}
.logo-text {
  font-size: 7.5rem;
  text-align: center;

  filter: drop-shadow(1px 1px 2px black)
    drop-shadow(0 0 0.1em rgba(255, 255, 255, 0.144))
    drop-shadow(0 0 0.1em rgba(255, 255, 255, 0.083));
}

.button-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-size: 1.2rem;
  .button:hover {
    box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2), 0 0 1em rgb(255, 255, 255, 0.5),
      0 0 0.2em rgb(255, 255, 255, 0.5);
  }
}

#login-button {
  width: 100%;
  margin-top: 24px;
}

.sign-up-forgot-password-links {
  display: flex;
  flex-direction: row;
  gap: 50px;
  font-size: 1.2rem;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .login-page-container {
    grid-template-columns: 100%;
    grid-template-areas: "form";
    gap: 0;
  }
  .cute-animals {
    display: none;
  }
}

@media (max-width: 768px) {
  .login-page-container > div.form {
    width: 90%;
    margin: auto;
    margin-top: 20%;
  }
}

@media (max-width: 528px) {
  .logo-text {
    font-size: 5rem;
  }
}
