@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --coral: #C0522A; --coral-dk: #2C1810; --coral-lt: #F0E8E0;
  --cream: #FAF7F4; --beige: #EDE3DB; --mute: #B89C8E; --text: #2C1810; --gray: #6B6B6B;
  --serif: 'Playfair Display', Georgia, serif; --sans: 'DM Sans', system-ui, sans-serif;
}
body { font-family: var(--sans); background: #E8E0D8; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-wrap { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: 24px; }
.auth-brand { text-align: center; }
.auth-logo { font-family: var(--serif); font-size: 26px; color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.logo-dot { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; display: inline-block; }
.auth-tagline { font-size: 13px; color: var(--mute); font-style: italic; }
.auth-card { background: #fff; border: 1px solid var(--beige); border-radius: 20px; padding: 32px; box-shadow: 0 4px 24px rgba(44,24,16,0.06); }
.auth-title { font-family: var(--serif); font-size: 24px; color: var(--text); margin-bottom: 6px; }
.auth-sub { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.auth-sub a { color: var(--coral); text-decoration: none; font-weight: 500; }
.auth-sub a:hover { text-decoration: underline; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.f-row { display: flex; flex-direction: column; gap: 5px; }
.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-lbl { font-size: 10px; font-weight: 500; color: var(--mute); text-transform: uppercase; letter-spacing: 0.4px; }
.f-input { width: 100%; background: var(--cream); border: 1px solid var(--beige); border-radius: 10px; padding: 10px 13px; font-size: 13px; font-family: var(--sans); color: var(--text); outline: none; transition: border-color 0.15s; }
.f-input:focus { border-color: var(--coral); background: #fff; }
.f-input-wrap { position: relative; }
.f-input-wrap .f-input { padding-right: 40px; }
.f-eye { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--mute); font-size: 15px; padding: 4px; }
.f-forgot { text-align: right; font-size: 12px; }
.f-forgot a { color: var(--coral); text-decoration: none; }
.f-check { display: flex; align-items: flex-start; gap: 8px; }
.f-check input { margin-top: 2px; accent-color: var(--coral); }
.f-check label { font-size: 12px; color: var(--gray); line-height: 1.5; }
.f-check a { color: var(--coral); text-decoration: none; }
.f-submit { width: 100%; background: var(--coral); color: #fff; border: none; border-radius: 12px; padding: 13px; font-size: 14px; font-weight: 500; font-family: var(--sans); cursor: pointer; transition: background 0.2s; }
.f-submit:hover { background: var(--coral-dk); }
.f-divider { display: flex; align-items: center; gap: 12px; }
.f-divider::before, .f-divider::after { content: ''; flex: 1; height: 1px; background: var(--beige); }
.f-divider span { font-size: 12px; color: var(--mute); }
.f-google { width: 100%; background: #fff; border: 1px solid var(--beige); border-radius: 12px; padding: 11px; font-size: 13px; font-family: var(--sans); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: border-color 0.15s; }
.f-google:hover { border-color: var(--coral); }
