/* Cute Clinic client portal — warm, elegant, on-brand (client-facing). */
:root {
  --green: #1e4d37;
  --green-dark: #163827;
  --cream: #f8f3ea;
  --cream-2: #fafaf7;
  --slate: #758696;
  --ink: #2b2b2b;
  --line: #e6e3da;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(30, 77, 55, .06);
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: 'Spectral', Georgia, serif; color: var(--ink);
  background: var(--cream-2); font-size: 16px; line-height: 1.6;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--green); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: 34px; }
h2 { font-size: 24px; }
a { color: var(--green); }

.site-header { background: var(--green); color: #fff; padding: 16px 24px; text-align: center; }
.site-header .brand { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; }
.site-header .out { float: right; font-size: 14px; }
.site-header .out a { color: var(--cream); text-decoration: none; }

.wrap { max-width: 720px; margin: 0 auto; padding: 36px 22px 72px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 28px; margin-bottom: 22px; }
.muted { color: var(--slate); }
.lead { font-size: 18px; }

.btn { display: inline-block; background: var(--green); color: #fff; border: 1px solid var(--green);
       padding: 12px 22px; border-radius: var(--radius); font-family: 'Spectral'; font-size: 16px; cursor: pointer; text-decoration: none; }
.btn:hover { background: var(--green-dark); }
.btn.ghost { background: #fff; color: var(--green); }
.btn.block { display: block; width: 100%; text-align: center; }

label { display: block; font-size: 14px; color: var(--slate); margin: 10px 0 5px; }
input { width: 100%; padding: 12px 14px; border: 1px solid #d6d2c7; border-radius: 9px; font-family: 'Spectral'; font-size: 16px; }
input:focus { outline: none; border-color: var(--green); }

.status { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.status.ok { background: #e9f1ec; color: var(--green); }
.status.pending { background: #fdf6e9; color: #8a6d2f; }

.doc { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.doc:last-child { border-bottom: none; }
.doc .meta { color: var(--slate); font-size: 13px; }

.centered { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.auth-card { background: #fff; border-radius: 16px; padding: 40px 36px; width: 400px; box-shadow: 0 12px 44px rgba(30,77,55,.14); text-align: center; }
.auth-card h1 { margin-top: 0; }
.err { color: #b3402f; }
