/* ===== Auth Page Styles (clean, consistent, OSU scarlet) ===== */

:root{
  --scarlet:#bb0000;
  --ink:#111;
  --muted:#6b6b6b;
  --panel:#fff;
  --surface:#f6f6f6;
  --radius:20px;
  --shadow: 0 24px 60px rgba(0,0,0,.12);
}

body{ background:var(--surface); }

.wrap.section{ max-width:1100px; margin:0 auto; padding:1.6rem 1rem 3rem; }
h1{ margin:.25rem 0 1rem 0; }
.muted{ color:#666; }
.small{ font-size:.9rem; }

.card{
  background:var(--panel);
  border:1px solid #eee;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:clamp(1rem,2.6vw,1.35rem);
}

.auth-grid{
  display:grid; gap:1rem; margin:1rem 0 1.25rem 0;
  grid-template-columns:1fr 1fr;
}
@media (max-width:980px){ .auth-grid{ grid-template-columns:1fr; } }

.auth-card h2{ margin:.25rem 0 1rem; font-size:1.25rem; font-weight:1000; }

.auth-form{ display:grid; gap:.75rem; }
.auth-form label{ font-weight:800; color:#222; display:grid; gap:.35rem; }
.auth-form input{
  background:#fafafa; border:1px solid #e4e4e4; border-radius:14px;
  padding:.9rem 1rem; outline:none;
}
.auth-form input:focus{ border-color:#ddd; box-shadow:0 0 0 3px rgba(187,0,0,.12); }

.uploader{ border:0; padding:0; margin-top:.25rem; }
.uploader-row{ display:flex; align-items:center; gap:.75rem; }
.avatar{
  width:64px; height:64px; border-radius:999px; object-fit:cover;
  background:#e9eef2; border:2px solid #f0f0f0; box-shadow:0 4px 14px rgba(0,0,0,.06);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-weight:900; border-radius:999px; cursor:pointer; user-select:none;
  border:1px solid #111; background:#111; color:#fff; padding:.78rem 1.15rem;
  transition:transform .06s ease, filter .06s ease, box-shadow .12s ease;
}
.btn:active{ transform:translateY(1px); }
.btn--full{ width:100%; }
.btn--ghost{ background:#fff; color:#111; border:1px solid #ddd; }
.btn--outline{ background:#fff; color:#111; border:1px solid #ddd; }
.btn--scarlet{
  background:linear-gradient(180deg,#c01824,#9c0a0a); border-color:#9c0a0a; color:#fff;
  box-shadow:0 10px 28px rgba(187,0,0,.28);
}
.btn--scarlet:hover{ filter:brightness(.98); }
.btn--scarlet:active{ transform:translateY(1px); }

.btn--google{
  background:#fff; color:#111; border:1px solid #e3e3e3;
  padding:.9rem 1.15rem; width:100%;
}
.btn--google .g-logo{ display:grid; place-items:center; width:22px; height:22px; }

.or-row{ display:grid; place-items:center; margin:.6rem 0; }
.or-row span{
  display:inline-block; padding:.15rem .6rem; font-weight:900; color:#666; background:#f2f2f2; border-radius:999px;
}

.actions-row{ display:flex; gap:.6rem; flex-wrap:wrap; }
.actions-row .btn{ height:48px; padding:0 1.25rem; }

.form-msg{ min-height:1.25rem; font-weight:800; margin:.35rem 0 0; color:#444; }

/* profile panel */
.profile-card{ display:grid; grid-template-columns:120px 1fr; gap:1rem; align-items:center; }
@media (max-width:720px){ .profile-card{ grid-template-columns:84px 1fr; } }
.avatar-lg{
  width:96px; height:96px; border-radius:999px; object-fit:cover;
  background:#e9eef2; border:2px solid #f0f0f0; box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.profile-right h3{ margin:.15rem 0 .35rem; }

.badge{
  display:inline-block; padding:.3rem .6rem; border-radius:10px; font-weight:900; margin:.2rem 0;
}
.badge--free{ color:#b20000; background:rgba(187,0,0,.10); border:1px solid rgba(187,0,0,.3); }
.badge--paid{
  color:#fff; background:linear-gradient(180deg,#c01824,#9c0a0a);
  border:1px solid #9c0a0a; box-shadow:0 0 0 3px rgba(187,0,0,.15), 0 8px 28px rgba(187,0,0,.25);
}

.verify-box.hidden{ display:none; }
.link{ color:var(--scarlet); font-weight:900; text-decoration:none; border-bottom:2px solid rgba(187,0,0,.25); }
.link:hover{ filter:brightness(.95); }
