section.account-form-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.account-form-page .account-form-wrapper {
  min-height: 440px;
  opacity: 1;
  translate: 0 0px;
  pointer-events: all;
  transition: opacity 0.2s ease-in-out 0.4s, translate 0.3s ease 0.4s;
}
section.account-form-page .account-form-wrapper:not(.active) {
  opacity: 0;
  translate: 0 60px;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, translate 0.3s ease;
}
section.account-form-page .account-form-wrapper p {
  margin: 0;
}
section.account-form-page .account-form-wrapper.login-form .forgot-wrapper {
  width: 100%;
}
section.account-form-page .account-form-wrapper.login-form .forgot-wrapper .forgot-password {
  font-size: 14px;
  text-align: right;
  margin: 12px 0 0;
}
section.account-form-page .account-form-wrapper.login-form .forgot-wrapper .forgot-password a {
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}
section.account-form-page .account-form-wrapper.login-form .forgot-wrapper .forgot-password a:hover {
  text-decoration: none;
}
section.account-form-page .account-form-wrapper.login-form .reactivate-block {
  margin-top: 40px;
  text-align: center;
  background: var(--primary-color);
  color: var(--text-alternate-color);
  padding: 15px;
  box-sizing: border-box;
}
section.account-form-page .account-form-wrapper.login-form .reactivate {
  margin-top: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  cursor: pointer;
}
section.account-form-page .account-form-wrapper.login-form .reactivate:hover {
  text-decoration: none;
}
section.account-form-page .account-form-wrapper.account-recover-form {
  position: absolute;
  inset: 50% 50% auto auto;
  translate: 50% -40%;
}
section.account-form-page .account-form-wrapper.account-recover-form.active {
  translate: 50% -50%;
}
