/* ================================================================
   forgot-password.css — パスワード再設定メール送信ページ専用
================================================================ */

.fp-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

.fp-page-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}

.fp-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}

.fp-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 36px;
  text-align: center;
}

/* エラーバナー */
.fp-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 24px;
}

/* フォーム行（f-row / f-label / f-input は register.css と共通） */
.f-row { margin-bottom: 24px; }

.f-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.f-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}

.f-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}

.f-input.is-error { border-color: #e74c3c; }

/* 送信ボタン */
.btn-fp-submit {
  width: 100%;
  padding: 18px;
  background: #bdac1e;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .1em;
  cursor: pointer;
  transition: var(--ease);
  margin-top: 4px;
}

.btn-fp-submit:hover { background: var(--gold); color: #fff; }

.fp-login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
}

.fp-login-link a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   送信完了パネル
---------------------------------------------------------------- */
.fp-sent {
  text-align: center;
  padding: 48px 0;
}

.fp-sent-icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.fp-sent-icon svg { stroke: var(--navy); }

.fp-sent-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 10px;
}

.fp-sent-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 24px;
}

.fp-sent-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.fp-sent-msg {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 12px;
}

.fp-sent-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .fp-wrap     { padding: 40px 20px 64px; }
  .fp-sent-msg { font-size: 12px; }
  .fp-sent-note { font-size: 10px; }
}
