.fs-forgot-password {
  background: transparent;
  color: var(--muted, #a9b8ae);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fs-forgot-password:hover { color: var(--green, #c9ff23); }
.fs-recovery-open { overflow: hidden; }
.fs-recovery-overlay {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background: rgba(8, 13, 10, .94);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f4f7f1;
}
.fs-recovery-panel {
  position: relative;
  width: min(100%, 470px);
  min-width: 0;
  padding: 34px;
  border: 1px solid #35483b;
  border-radius: 8px;
  background: #18211b;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .3);
}
.fs-recovery-brand { display: flex; align-items: center; gap: 10px; padding-right: 32px; }
.fs-recovery-brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.fs-recovery-brand strong { font-size: 18px; letter-spacing: 0; }
.fs-recovery-panel h1 { margin: 24px 0 10px; font-size: 28px; line-height: 1.2; letter-spacing: 0; }
.fs-recovery-description { margin: 0 0 24px; color: #a9b8ae; line-height: 1.5; }
.fs-recovery-close {
  position: absolute;
  top: 28px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid #35483b;
  border-radius: 6px;
  background: #27352b;
  color: #f4f7f1;
  font-size: 24px;
  cursor: pointer;
}
.fs-recovery-form { display: grid; gap: 10px; }
.fs-recovery-form label { margin-top: 6px; font-size: 14px; font-weight: 700; }
.fs-recovery-form input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 12px;
  border: 1px solid #435b4a;
  border-radius: 6px;
  background: #101511;
  color: #f4f7f1;
  font-size: 16px;
}
.fs-recovery-submit, .fs-recovery-back {
  display: flex;
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.fs-recovery-submit { margin-top: 12px; background: #c9ff23; color: #101511; }
.fs-recovery-submit:disabled { opacity: .6; cursor: wait; }
.fs-recovery-back { background: transparent; color: #a9b8ae; }
.fs-recovery-feedback { margin: 0 0 18px; padding: 14px; border: 1px solid #587531; border-radius: 6px; background: #25351c; color: #e7f6d5; font-size: 14px; line-height: 1.5; overflow-wrap: anywhere; }
.fs-recovery-feedback.is-error { border-color: #815050; background: #362121; color: #ffcece; }
.fs-recovery-feedback[hidden] { display: none; }
.fs-recovery-wait { padding: 16px 0; color: #c9ff23; }
.fs-recovery-overlay :focus-visible, .fs-forgot-password:focus-visible { outline: 2px solid #c9ff23; outline-offset: 3px; }
@media (max-width: 560px) {
  .fs-recovery-overlay { padding: 16px; }
  .fs-recovery-panel { padding: 26px 22px; }
  .fs-recovery-panel h1 { font-size: 25px; }
  .fs-recovery-close { top: 24px; right: 18px; }
}
