/* Register page main container */
.main_remind_pw_container {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Login container */
.remind_form {
  width: 57%;
  height: 100%;
}

/* Logo image */
.remind_form div:first-child a img {
  display: none;
}

/* Block icon */
.remind_container > div:first-child {
  text-align: end;
}

.remind_container {
  padding: 70px 80px 70px 200px;
  width: 100%;
  max-width: 821px;
  margin-right: auto;
}

/* Login fields */
.remind_password_fields {
  padding-top: 184px;
  max-width: 470px;
}

/* Login form title */
.remind_password_fields .h2 {
  border-bottom: 2px solid var(--purple1);
  -o-border-image: linear-gradient(
      to right,
      var(--purple1) 50%,
      transparent 50%
    )
    100% 1;
  border-image: linear-gradient(to right, var(--purple1) 50%, transparent 50%)
    100% 1;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
}

/* "If you dont have account" text */
.remind_password_fields > span.remind_password {
  color: var(--grey1);
  font-weight: 500;
}

/* "register" link */
.remind_password_fields > span .register {
  color: var(--purple1);
  margin-left: 5px;
}

/* Block icon */
.reminder_block_icon {
  border: none;
  background-color: inherit;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: end;
}

/* Email form */
#remind-email {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Remind button */
#remind-password-user {
  width: 100%;
}

/* "Go back to login" text + text beneath title */
.remind_password,
.remind_go_back_desktop a {
  text-align: start;
}

/* "Go back to login" link div */
.remind_go_back_desktop {
  margin-top: 15px;
  color: var(--purple1);
  font-weight: 500;
}

/* "Go back to login" link */
.remind_go_back_desktop a {
  font-weight: 500;
  display: flex;
  gap: 7px;
  align-items: center;
}

/* Left arrow icon */
.remind_form .remind_go_back_desktop img.remind_icon_left {
  display: block;
  height: 10px;
  width: 6px;
}

@media screen and (max-width: 1350px) {
  .remind_container {
    padding: 70px 80px 70px 140px;
  }
}

@media screen and (max-width: 1100px) {
  /* Login container */
  .remind_container {
    padding: 70px 50px 70px 50px;
  }
}

@media screen and (max-width: 767px) {
  /* Register page main container */
  .main_remind_pw_container {
    flex-direction: column;
    height: auto;
  }

  /* Whole Login container */
  .remind_form {
    order: 1;
    width: 100%;
  }

  .remind_container {
    padding: 50px 20px 150px 20px;
  }

  .remind_container div:first-child a img {
    width: 94px;
    height: 30px;
    display: block;
  }

  /* Logo image */
  .remind_container div:first-child button img {
    width: 16px;
    height: 16px;
  }

  /* Logo + block div */
  .remind_container > div:first-child {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    max-width: unset;
  }

  /* Login fields */
  .remind_password_fields {
    padding: 0px;
    max-width: unset;
  }

  /* Login form title */
  .remind_password_fields .h2 {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 20px;
  }

  /* "If you don't have account" div */
  .remind_password_fields > span.register_text_mobile {
    color: var(--grey1);
    font-weight: 400;
    text-align: center;
  }

  /* Block icon */
  .reminder_block_icon {
    width: unset;
    text-align: unset;
  }

  /* "go back to login" link */
  .remind_go_back_desktop {
    display: none;
  }

  /* Email form */
  #remind-email {
    margin-bottom: 15px;
    margin-top: 30px;
  }

  /* Text beneath title */
  .remind_password_fields > span.remind_password {
    margin-top: 15px;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
  }

  /* Send button */
  #remind-password-user {
    height: 45px;
  }
}
