.sign-up-page-container {
  display: grid;
  grid-template-areas: "cute-animal form";
  grid-template-columns: 400px 400px;
  grid-template-rows: 1fr;
  margin: auto;
  width: 800px;
}

.sign-up-page-container {
  /* temporary */
  display: grid;
  grid-template-areas: "form";
  grid-template-columns: 400px;
  grid-template-rows: 1fr;
  margin: auto;
  width: 400px;
}

.sign-up-page-container > div.cute-animal {
  grid-area: cute-animal;
  img {
    max-width: 400px;
    max-height: 800px;
  }
}

.sign-up-page-container > div.form {
  grid-area: form;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
.form-container {
  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) 91%,
    rgba(0, 0, 0, 0) 97%
  );
  -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;
    gap: 8px;
  }

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

  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: 12px;
  margin-top: 20px;
  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);
  }
}

@media (max-width: 992px) {
  .sign-up-page-container {
    grid-template-areas: "form";
    grid-template-columns: 1fr;
    width: unset;
  }

  .cute-animal {
    display: none;
  }

  .logo-text {
    top: -8px;
  }

  .sign-up-page-container > div.form {
    margin-top: 0;
  }
}

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