/* reminder 個別スタイル（loginと同系統） */
.auth-body{ background:#F4F6FA; min-height:100vh; display:flex; align-items:center; justify-content:center; padding:32px 16px; }
.auth-card{ width:100%; max-width:400px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 8px 30px rgba(20,40,80,.10); padding:34px 32px 28px; }
.auth-logo{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:17px; color:var(--navy); justify-content:center; margin-bottom:22px; }
.auth-logo-img{ height:26px; width:auto; }
.auth-title{ font-size:20px; font-weight:700; color:var(--navy); text-align:center; margin-bottom:4px; }
.auth-sub{ font-size:12.5px; color:var(--gray); text-align:center; margin-bottom:22px; line-height:1.6; }
.auth-label{ display:block; font-size:12px; font-weight:700; color:var(--navy); margin:0 0 6px; }
.auth-input{ border:1px solid var(--line); border-radius:8px; padding:11px 12px; font-size:13px; color:var(--navy); background:#fff; }
.auth-btn{ width:100%; justify-content:center; padding:12px; font-size:14px; margin-top:18px; text-decoration:none; }
.auth-note{ background:var(--blue-lt); color:var(--blue-dk); border-radius:8px; padding:11px 13px; font-size:11.5px; line-height:1.6; margin-top:18px; }
.auth-link{ color:var(--blue); font-weight:700; text-decoration:none; }
.auth-link:hover{ text-decoration:underline; }
.auth-foot{ text-align:center; font-size:12px; margin-top:18px; }
@media (max-width:560px){ .auth-card{ padding:26px 20px; } }

/* フォームエラー表示 */
.auth-error{ background:#FDECEA; border:1px solid #F5C6C0; color:#B23B32; font-size:12.5px; border-radius:8px; padding:10px 12px; margin-bottom:16px; }
.auth-btn{ border:none; cursor:pointer; width:100%; }
