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

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

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

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

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

/* Block icon */
.recovery_block_icon {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: end;
}

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

/* Login form title */
.recovery_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;
  text-align: start;
}

/* "If you dont have account" text */
.recovery_fields > span.recovery_text {
  text-align: start;
  color: var(--grey1);
  font-weight: 500;
  display: inline-block;
}

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

/* Login forms */
.recovery_forms {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 30px;
  gap: 20px;
}

/* All form fields */
.recovery_forms input {
  font-weight: 500;
  width: 100%;
  padding: 15px 40px 15px 20px;
  height: 50px;
}

/* Password form */
.recovery_password_div {
  position: relative;
}

/* Password icon */
.recovery_password_div button {
  position: absolute;
  bottom: 18px;
  right: 20px;
}

/* Password icon */
.recovery_password_div button {
  border: none;
  background-color: inherit;
  cursor: pointer;
}

/* Show password icon */
.recovery_password_div button.show_recovery_password img:last-child,
.recovery_password_div button.show_recovery_password picture:last-child img {
  display: none;
}

/* Hide password icon */
.recovery_password_div button.hide_recovery_password img:first-child,
.recovery_password_div button.hide_recovery_password picture:first-child img {
  display: none;
}

/* Hide password icon */
.recovery_password_div button.hide_recovery_password {
  bottom: 14px;
}

/* Login button */
#recovery-password-confirm {
  width: 100%;
  margin-bottom: 15px;
}

/* Informational message while logging */
#hidden-recovery-message {
  text-align: start;
}

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

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

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

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

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

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

  /* Logo image */
  .recovery_block_icon img.recovery_icon {
    width: 16px;
    height: 16px;
    display: block;
  }

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

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

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

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

  /* All login forms */
  .recovery_forms {
    margin-top: 30px;
    margin-bottom: 15px;
    gap: 15px;
  }

  /* All login forms */
  .recovery_forms input {
    padding: 10px 40px 10px 15px;
    height: 45px;
  }

  /* "Dont have an account" text */
  .recovery_text {
    display: none;
  }

  /* Confirm button */
  #recovery-password-confirm {
    height: 45px;
  }

  /* Password icon */
  .recovery_password_div button.show_recovery_password {
    bottom: 14px;
  }

  /* Password icon */
  .recovery_password_div button.hide_recovery_password {
    bottom: 10px;
  }
}
