/* =========================================================
   로그인 페이지 전용
   ========================================================= */

.auth-form .form-row { display: flex; justify-content: space-between; align-items: center; margin: 0.4rem 0 1.5rem; font-size: 0.85rem; }
.check-keep { display: inline-flex; align-items: center; gap: 0.45rem; cursor: pointer; color: var(--text); font-weight: 500; margin: 0; }
.check-keep input { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }
.find-pw { color: var(--muted); text-decoration: none; font-weight: 500; }
.find-pw:hover { color: var(--brand); }

.btn-login { width: 100%; background: var(--brand); color: white; border: 0; border-radius: var(--radius-sm); padding: 0.95rem 1.2rem; font-size: 0.98rem; font-weight: 700; transition: background 0.15s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; }
.btn-login:hover:not(:disabled) { background: var(--brand-dark); color: white; }
.btn-login:disabled { background: var(--border); color: var(--muted); cursor: not-allowed; }
.btn-login i { font-size: 1.05rem; }

.login-btn-row { display: flex; gap: 0.6rem; }
.login-btn-row .btn-login { flex: 1; }
.btn-login-cancel { flex: 0 0 35%; background: var(--card); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.95rem 1rem; font-size: 0.98rem; font-weight: 600; transition: background 0.15s, border-color 0.15s, color 0.15s; cursor: pointer; }
.btn-login-cancel:hover { background: var(--bg); border-color: var(--muted); color: var(--muted); }

.form-divider { display: flex; align-items: center; gap: 0.85rem; margin: 1.4rem 0; color: var(--muted); font-size: 0.8rem; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.kakao-helper { background: var(--accent-soft); border-radius: var(--radius-sm); padding: 0.85rem 1rem; margin-top: 1.4rem; display: flex; align-items: center; gap: 0.85rem; }
.kakao-helper .icon { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #4A2A00; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.kakao-helper .text { flex: 1; font-size: 0.83rem; line-height: 1.45; word-break: keep-all; }
.kakao-helper .text strong { display: block; font-weight: 700; color: var(--text); }
.kakao-helper .text small { color: #92580C; font-weight: 500; }
.kakao-helper .link { color: var(--brand-dark); font-size: 0.82rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.kakao-helper .link:hover { text-decoration: underline; }
