.forgot-password-page {
  display: flex;
  gap: 100px;
  margin-bottom: 100px;
}

.forgot-password-page.container {
  padding-right: 0px;
}

.forgot-password-container {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 400px;
}

.forgot-password-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.forgot-password-fields {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.forgot-password-fields > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forgot-password-submit {
  display: flex;
  flex-direction: column;
}

.forgot-password-submit button {
  margin-top: 16px;
}

.blue-button {
  padding: 15.5px 20px;
  background-color: var(--blue1);
  color: var(--white1);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease all;
  height: 50px;
}

.blue-button:disabled {
  background-color: var(--border1);
  color: var(--grey1);
  pointer-events: none;
}

.blue-button:hover {
  background-color: var(--blue1Hover);
  transition: 0.3s ease all;
}

.grey-text {
  color: var(--grey1);
  transition: 0.2s ease all;
}

.how-it-works-container {
  margin-top: 9px;
}

#info-message {
  display: block;
  margin-bottom: 5px;
}

#info-message.success-msg {
  color: green;
}

#info-message.error-msg {
  color: var(--redAA);
}

@media screen and (max-width: 1100px) {
  .forgot-password-container {
    min-width: 300px;
  }
}

@media screen and (max-width: 1000px) {
  .forgot-password-page.container {
    flex-direction: column;
    padding-right: 50px;
    gap: 50px;
  }

  .forgot-password-page .how-it-works-page {
    border-radius: 32px;
  }

  .forgot-password-page .explanation-step:last-child {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  .how-it-works-container {
    display: none;
  }

  .forgot-password-container {
    min-width: unset;
    margin-top: 32px;
  }

  .forgot-password-page.container {
    padding-right: 20px;
  }

  .blue-button {
    height: 45px;
    padding: 14px 20px;
  }
}
