:root {
  --pr-bg: linear-gradient(180deg, #fcfcfc 0%, #f7f7f7 100%);
  --pr-ink: var(--app-flow-text, #333333);
  --pr-heading: var(--app-flow-heading, #1f2226);
  --pr-muted: var(--app-flow-muted, #6f6f6f);
  --pr-soft: #8b95a7;
  --pr-line: var(--app-flow-border, #e6e6e6);
  --pr-line-strong: var(--app-flow-border-strong, #d8d8d8);
  --pr-card: var(--app-flow-surface, #ffffff);
  --pr-card-soft: var(--app-flow-surface-alt, #fbfbfb);
  --pr-card-strong: #ffffff;
  --pr-accent: var(--app-flow-accent, #f2a20c);
  --pr-accent-strong: var(--app-flow-accent-strong, #221600);
  --pr-accent-soft: var(--app-flow-accent-soft, rgba(242, 162, 12, 0.14));
  --pr-success: #0f766e;
  --pr-success-soft: rgba(15, 118, 110, 0.12);
  --pr-warning: #9a3412;
  --pr-warning-soft: rgba(154, 52, 18, 0.12);
  --pr-shadow: var(--app-flow-shadow, 0 12px 28px rgba(51, 51, 51, 0.08));
  --pr-shadow-soft: var(--app-flow-shadow-soft, 0 10px 30px rgba(51, 51, 51, 0.1));
  --pr-radius-xl: 28px;
  --pr-radius-lg: 24px;
  --pr-radius-md: 18px;
  --pr-focus-ring: var(--app-flow-focus-ring, 0 0 0 4px rgba(242, 162, 12, 0.18));
}

body.password-recovery-page {
  background: var(--pr-bg);
  color: var(--pr-ink);
  font-family: 'Manrope', sans-serif;
  min-height: 100vh;
}

.pr-app,
.pr-frame,
.pr-window {
  min-height: 100vh;
}

.pr-rail,
.pr-stage {
  position: relative;
}

.pr-rail {
  background: var(--app-flow-hero-gradient, linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%));
  border-bottom: 1px solid var(--pr-line);
}

.pr-rail__inner,
.pr-stage__shell {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 20px 28px;
}

.pr-brand,
.pr-stage__mobile-brand {
  align-items: center;
  color: var(--pr-heading);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 10px;
}

.pr-brand img,
.pr-stage__mobile-brand img {
  height: 28px;
  width: auto;
}

.pr-stage__mobile-brand {
  margin-bottom: 18px;
}

.pr-kicker,
.pr-event-card__eyebrow,
.pr-rail-card__eyebrow,
.pr-form-card__eyebrow,
.pr-state-card__eyebrow {
  color: var(--pr-accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-kicker {
  display: inline-flex;
  margin: 22px 0 10px;
}

.pr-title,
.pr-stage__title {
  color: var(--pr-heading);
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.pr-subtitle,
.pr-stage__subtitle,
.pr-form-card__text,
.pr-state-card__text,
.pr-rail-footer p,
.pr-stage__hint,
.pr-rail-list li {
  color: var(--pr-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pr-subtitle {
  margin: 14px 0 0;
  max-width: 32rem;
}

.pr-event-card,
.pr-rail-card,
.pr-form-card,
.pr-state-card {
  background: linear-gradient(180deg, var(--pr-card-strong) 0%, var(--pr-card-soft) 100%);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-lg);
  box-shadow: var(--pr-shadow);
}

.pr-event-card,
.pr-rail-card,
.pr-rail-footer,
.pr-form-card,
.pr-state-card {
  margin-top: 18px;
}

.pr-event-card,
.pr-rail-card,
.pr-form-card,
.pr-state-card,
.pr-stage__panel {
  padding: 22px;
}

.pr-event-card__title {
  color: var(--pr-heading);
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.pr-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pr-event-card__pill,
.pr-rail-badge,
.pr-stage__event-mini {
  align-items: center;
  background: var(--pr-accent-soft);
  border: 1px solid rgba(242, 162, 12, 0.18);
  border-radius: 999px;
  color: var(--pr-accent-strong);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  padding: 8px 12px;
}

.pr-event-card__pill.is-soft {
  background: rgba(31, 34, 38, 0.05);
  border-color: rgba(31, 34, 38, 0.08);
  color: var(--pr-muted);
}

.pr-rail-card__header,
.pr-form-card__title,
.pr-state-card__title {
  color: var(--pr-heading);
}

.pr-rail-card__header strong,
.pr-form-card__title,
.pr-state-card__title {
  display: block;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 8px;
}

.pr-rail-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.pr-rail-list li {
  padding-left: 0;
}

.pr-rail-footer {
  margin-top: auto;
}

.pr-stage__shell {
  justify-content: center;
}

.pr-stage__panel {
  background: var(--pr-card-strong);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-xl);
  box-shadow: var(--pr-shadow-soft);
  overflow: hidden;
}

.pr-stage__header {
  border-bottom: 1px solid var(--pr-line);
  margin: -22px -22px 0;
  padding: 22px 22px 0;
}

.pr-stage__header-inner {
  padding-bottom: 22px;
}

.pr-back-link {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 249, 243, 0.98) 100%);
  border: 1px solid rgba(242, 162, 12, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  color: var(--pr-heading);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 12px;
  margin-bottom: 18px;
  min-height: 50px;
  padding: 8px 16px 8px 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pr-back-link:hover,
.pr-back-link:focus,
.pr-back-link:focus-visible {
  border-color: rgba(242, 162, 12, 0.4);
  box-shadow: var(--pr-focus-ring);
  color: var(--pr-accent-strong);
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

.pr-back-link__icon {
  align-items: center;
  background: rgba(242, 162, 12, 0.12);
  border-radius: 999px;
  color: var(--pr-accent-strong);
  display: inline-flex;
  flex: 0 0 32px;
  height: 32px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 32px;
}

.pr-back-link:hover .pr-back-link__icon,
.pr-back-link:focus .pr-back-link__icon,
.pr-back-link:focus-visible .pr-back-link__icon {
  background: #1f2226;
  color: #ffffff;
  transform: translateX(-1px);
}

.pr-back-link__icon svg {
  height: 16px;
  width: 16px;
}

.pr-back-link__label {
  letter-spacing: -0.01em;
}

.pr-stage__event-mini {
  margin-bottom: 18px;
}

.pr-stage__event-mini span {
  color: var(--pr-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pr-stage__event-mini strong {
  color: var(--pr-accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.pr-stage__subtitle {
  margin: 14px 0 0;
  max-width: 34rem;
}

.pr-stage__body {
  padding-top: 22px;
}

.pr-form-card__text {
  margin: 10px 0 0;
}

.pr-field,
.pr-field-grid {
  margin-top: 18px;
}

.pr-field-grid {
  display: grid;
  gap: 16px;
}

.pr-label {
  color: var(--pr-heading);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pr-input {
  background: var(--pr-card-strong);
  border: 1px solid var(--pr-line-strong);
  border-radius: 16px;
  box-shadow: none;
  font-size: 1rem;
  min-height: 56px;
  padding: 0 18px;
}

.pr-input:focus {
  border-color: rgba(242, 162, 12, 0.7);
  box-shadow: var(--pr-focus-ring);
}

.pr-password-input {
  position: relative;
}

.pr-visibility-toggle {
  align-items: center;
  appearance: none;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid var(--pr-line);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(31, 34, 38, 0.05);
  color: inherit;
  cursor: pointer;
  display: flex;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.pr-visibility-toggle:hover,
.pr-visibility-toggle:focus-visible {
  border-color: rgba(242, 162, 12, 0.42);
  box-shadow: var(--pr-focus-ring);
  outline: none;
}

.pr-visibility-toggle[aria-pressed="true"] {
  background: linear-gradient(180deg, rgba(242, 162, 12, 0.12) 0%, #ffffff 100%);
  border-color: rgba(242, 162, 12, 0.34);
}

.pr-visibility-toggle__icon {
  align-items: center;
  background: rgba(242, 162, 12, 0.12);
  border-radius: 14px;
  color: var(--pr-accent-strong);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  width: 42px;
}

.pr-visibility-toggle[aria-pressed="true"] .pr-visibility-toggle__icon {
  background: #1f2226;
  color: #ffffff;
}

.pr-visibility-toggle__icon-svg {
  height: 18px;
  width: 18px;
}

.pr-visibility-toggle__icon-svg--hide {
  display: none;
}

.pr-visibility-toggle[aria-pressed="true"] .pr-visibility-toggle__icon-svg--show {
  display: none;
}

.pr-visibility-toggle[aria-pressed="true"] .pr-visibility-toggle__icon-svg--hide {
  display: block;
}

.pr-visibility-toggle__content {
  display: grid;
  flex: 1 1 auto;
  gap: 2px;
  min-width: 0;
}

.pr-visibility-toggle__label {
  color: var(--pr-heading);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.pr-visibility-toggle__hint {
  color: var(--pr-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.pr-field-error {
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255, 241, 242, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(190, 24, 93, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(127, 29, 29, 0.08);
  color: #9f1239;
  display: none;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
}

.pr-field-error.is-visible {
  display: flex;
}

.pr-field-error__icon {
  align-items: center;
  background: rgba(190, 24, 93, 0.12);
  border-radius: 12px;
  color: inherit;
  display: inline-flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.pr-field-error__icon svg {
  height: 18px;
  width: 18px;
}

.pr-field-error__text {
  display: block;
  flex: 1 1 auto;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  min-width: 0;
}

.pr-state-card--success {
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.92), #ffffff);
  border-color: rgba(15, 118, 110, 0.14);
}

.pr-state-card--warning {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.94), #ffffff);
  border-color: rgba(154, 52, 18, 0.14);
}

.pr-state-card__meta {
  color: var(--pr-muted);
  margin-top: 12px;
}

.pr-state-card__actions,
.pr-stage__cta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.pr-stage__actions {
  margin-top: 22px;
}

.pr-stage__actions-inner {
  border-top: 1px solid var(--pr-line);
  display: grid;
  gap: 16px;
  padding-top: 22px;
}

.pr-action-button {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
}

.pr-action-button.btn-warning {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border-color: #f59e0b;
  color: #111827;
}

.pr-action-button.btn-warning:hover,
.pr-action-button.btn-warning:focus {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-color: #d97706;
  color: #111827;
}

.pr-action-button--ghost {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  color: var(--pr-ink);
}

.pr-action-button--ghost:hover,
.pr-action-button--ghost:focus {
  background: rgba(15, 23, 42, 0.03);
  color: var(--pr-ink);
}

.pr-action-button[disabled],
.pr-action-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.54;
  pointer-events: none;
}

body.password-recovery-page--reset .pr-rail {
  display: none;
}

body.password-recovery-page--reset,
body.password-recovery-page--reset .pr-app,
body.password-recovery-page--reset .pr-frame,
body.password-recovery-page--reset .pr-window {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

body.password-recovery-page--reset .pr-window {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.password-recovery-page--reset .pr-stage {
  height: 100%;
  min-height: 100%;
}

body.password-recovery-page--reset .pr-stage__shell {
  justify-content: stretch;
  height: 100%;
  min-height: 100%;
  padding: 12px;
}

body.password-recovery-page--reset .pr-stage__panel {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  max-height: calc(100svh - 24px);
}

body.password-recovery-page--reset .pr-stage__header {
  margin: -22px -22px 0;
  padding: 18px 22px 0;
}

body.password-recovery-page--reset .pr-stage__header-inner {
  padding-bottom: 18px;
}

body.password-recovery-page--reset .pr-stage__title {
  font-size: clamp(1.9rem, 9vw, 2.7rem);
}

body.password-recovery-page--reset .pr-stage__subtitle {
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 28rem;
}

body.password-recovery-page--reset .pr-stage__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding-top: 18px;
}

body.password-recovery-page--reset .pr-form,
body.password-recovery-page--reset .pr-state-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

body.password-recovery-page--reset .pr-form-card {
  margin-top: 0;
}

body.password-recovery-page--reset .pr-form-card,
body.password-recovery-page--reset .pr-state-card {
  padding: 20px;
}

body.password-recovery-page--reset .pr-stage__actions {
  margin-top: auto;
}

@media (max-width: 991.98px) {
  body.password-recovery-page--reset {
    overflow: hidden;
  }

  body.password-recovery-page--reset .pr-stage__mobile-brand {
    display: none;
  }

  body.password-recovery-page--reset .pr-stage__header {
    padding: 14px 18px 0;
  }

  body.password-recovery-page--reset .pr-stage__header-inner {
    padding-bottom: 14px;
  }

  body.password-recovery-page--reset .pr-back-link {
    font-size: 0.84rem;
    gap: 10px;
    margin-bottom: 12px;
    min-height: 44px;
    padding: 6px 14px 6px 8px;
  }

  body.password-recovery-page--reset .pr-back-link__icon {
    flex-basis: 28px;
    height: 28px;
    width: 28px;
  }

  body.password-recovery-page--reset .pr-back-link__icon svg {
    height: 14px;
    width: 14px;
  }

  body.password-recovery-page--reset .pr-stage__title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
    line-height: 1.02;
  }

  body.password-recovery-page--reset .pr-stage__subtitle {
    font-size: 0.88rem;
    line-height: 1.45;
    margin-top: 8px;
  }

  body.password-recovery-page--reset .pr-form-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  body.password-recovery-page--reset .pr-form-card__eyebrow {
    display: none;
  }

  body.password-recovery-page--reset .pr-form-card__title {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 0;
  }

  body.password-recovery-page--reset .pr-form-card__text {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-top: 6px;
  }

  body.password-recovery-page--reset .pr-field,
  body.password-recovery-page--reset .pr-field-grid {
    margin-top: 12px;
  }

  body.password-recovery-page--reset .pr-field-grid {
    gap: 12px;
  }

  body.password-recovery-page--reset .pr-label {
    font-size: 0.82rem;
    margin-bottom: 6px;
  }

  body.password-recovery-page--reset .pr-input {
    min-height: 48px;
    padding: 0 14px;
  }

  body.password-recovery-page--reset .pr-visibility-toggle {
    gap: 10px;
    margin-top: 12px;
    min-height: 54px;
    padding: 10px 12px;
  }

  body.password-recovery-page--reset .pr-visibility-toggle__icon {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  body.password-recovery-page--reset .pr-visibility-toggle__hint {
    display: none;
  }

  body.password-recovery-page--reset .pr-visibility-toggle__label {
    font-size: 0.88rem;
  }

  body.password-recovery-page--reset .pr-field-error {
    border-radius: 16px;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 14px;
  }

  body.password-recovery-page--reset .pr-field-error__icon {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }

  body.password-recovery-page--reset .pr-field-error__text {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  body.password-recovery-page--reset .pr-stage__actions {
    margin-top: auto;
  }

  body.password-recovery-page--reset .pr-stage__actions-inner {
    gap: 10px;
    padding-top: 12px;
  }

  body.password-recovery-page--reset .pr-stage__hint {
    display: none;
  }

  body.password-recovery-page--reset .pr-stage__cta {
    gap: 8px;
    margin-top: 0;
  }

  body.password-recovery-page--reset .pr-action-button {
    min-height: 46px;
  }

  body.password-recovery-page--reset .pr-action-button--ghost {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--pr-accent-strong);
    font-size: 0.84rem;
    font-weight: 700;
    min-height: auto;
    padding: 2px 0 0;
  }
}

@media (max-width: 991.98px) and (max-height: 720px) {
  body.password-recovery-page--reset .pr-stage__header {
    padding-top: 12px;
  }

  body.password-recovery-page--reset .pr-stage__header-inner {
    padding-bottom: 12px;
  }

  body.password-recovery-page--reset .pr-stage__title {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
  }

  body.password-recovery-page--reset .pr-stage__subtitle,
  body.password-recovery-page--reset .pr-form-card__text {
    display: none;
  }

  body.password-recovery-page--reset .pr-stage__event-mini {
    display: none;
  }

  body.password-recovery-page--reset .pr-field,
  body.password-recovery-page--reset .pr-field-grid {
    margin-top: 10px;
  }

  body.password-recovery-page--reset .pr-field-grid {
    gap: 10px;
  }

  body.password-recovery-page--reset .pr-visibility-toggle {
    margin-top: 10px;
    min-height: 48px;
    padding: 8px 10px;
  }

  body.password-recovery-page--reset .pr-action-button {
    min-height: 44px;
  }
}

@media (min-width: 992px) {
  .pr-stage__header-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .pr-stage__mobile-brand {
    display: flex;
  }

  .pr-rail {
    border-bottom: 0;
    border-right: 1px solid var(--pr-line);
  }

  .pr-rail__inner,
  .pr-stage__shell {
    padding: 30px 32px;
  }

  .pr-stage__panel {
    height: 100%;
    padding: 24px;
  }

  .pr-stage__header {
    margin: -24px -24px 0;
    padding: 22px 24px 0;
  }

  .pr-stage__header-inner {
    padding-bottom: 20px;
  }

  .pr-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pr-stage__cta,
  .pr-state-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.password-recovery-page--reset {
    overflow: hidden;
  }

  body.password-recovery-page--reset .pr-window {
    background: #ffffff;
    border: 1px solid var(--pr-line);
    border-radius: var(--pr-radius-lg);
    box-shadow: var(--pr-shadow-soft);
  }

  body.password-recovery-page--reset .pr-rail {
    display: block;
  }

  body.password-recovery-page--reset .pr-stage {
    height: 100%;
    min-height: 100%;
  }

  body.password-recovery-page--reset .pr-stage__shell {
    justify-content: stretch;
    height: 100%;
    min-height: 100%;
    padding: 30px 32px;
  }

  body.password-recovery-page--reset .pr-stage__panel {
    max-height: none;
  }

  body.password-recovery-page--reset .pr-stage__header {
    padding: 22px 24px 0;
  }

  body.password-recovery-page--reset .pr-form-card,
  body.password-recovery-page--reset .pr-state-card {
    padding: 22px;
  }
}

@media (min-width: 992px) and (max-height: 780px) {
  .pr-title,
  .pr-stage__title {
    font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  }

  .pr-subtitle,
  .pr-stage__subtitle,
  .pr-form-card__text,
  .pr-state-card__text,
  .pr-rail-footer p,
  .pr-stage__hint,
  .pr-rail-list li {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .pr-event-card,
  .pr-rail-card,
  .pr-form-card,
  .pr-state-card,
  .pr-stage__panel {
    padding: 18px;
  }

  .pr-rail__inner,
  .pr-stage__shell {
    padding: 22px 24px;
  }

  .pr-stage__header {
    margin: -18px -18px 0;
    padding: 18px 18px 0;
  }

  .pr-stage__header-inner {
    padding-bottom: 16px;
  }

  .pr-stage__body {
    padding-top: 10px;
  }

  .pr-event-card,
  .pr-rail-card,
  .pr-rail-footer,
  .pr-form-card,
  .pr-state-card {
    margin-top: 12px;
  }

  .pr-rail-list {
    gap: 8px;
    margin-top: 12px;
  }

  .pr-field,
  .pr-field-grid {
    margin-top: 12px;
  }

  .pr-field-grid {
    gap: 12px;
  }

  .pr-visibility-toggle {
    margin-top: 12px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .pr-stage__actions {
    margin-top: 14px;
  }

  .pr-stage__actions-inner {
    gap: 10px;
    padding-top: 14px;
  }

  .pr-stage__hint {
    display: none;
  }

  .pr-action-button {
    min-height: 48px;
  }

  body.password-recovery-page--reset .pr-rail-footer {
    display: none;
  }

  body.password-recovery-page--reset .pr-form-card,
  body.password-recovery-page--reset .pr-state-card {
    padding: 18px;
  }
}
