@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;1,300&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:          #f5f6fa;
  --surface:     #ffffff;
  --surface2:    #f0f2f7;
  --border:      rgba(0,0,0,0.07);
  --border-hi:   rgba(0,0,0,0.13);
  --gold:        #b8860b;
  --gold-dim:    rgba(184,134,11,0.1);
  --gold-glow:   rgba(184,134,11,0.25);
  --text:        #1a1f2e;
  --text-muted:  #5a6478;
  --text-faint:  #9aa0b0;
  --green:       #1a7f3c;
  --green-dim:   rgba(26,127,60,0.09);
  --red:         #c0392b;
  --red-dim:     rgba(192,57,43,0.09);
  --blue:        #1a56db;
  --blue-dim:    rgba(26,86,219,0.09);
  --purple:      #6d28d9;
  --radius:      12px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Mesh background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -5%,  rgba(184,134,11,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(26,86,219,0.04) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; }
h4, h5     { font-family: 'DM Sans', sans-serif; font-weight: 600; }

/* ── Scrollbar ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--surface2); }
::-webkit-scrollbar-thumb { background: #d0d5e0; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════
   LOGIN
══════════════════════════════════════════════════════════════════════ */
.login-section {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.login-card {
  width: 100%; max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 0 0 1px rgba(184,134,11,0.08);
  animation: loginReveal 0.55s cubic-bezier(0.2,0.8,0.3,1) both;
}

@keyframes loginReveal {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.login-logo-wrap {
  display: flex; justify-content: center; margin-bottom: 28px;
}

.login-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hi);
  box-shadow: 0 0 0 6px rgba(212,168,67,0.08);
}

.login-card h1 {
  font-size: 1.55rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.login-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ── Form fields ───────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder { color: var(--text-faint); }

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.btn-primary {
  width: 100%; padding: 13px;
  background: var(--gold);
  color: #0d1117;
  border-color: var(--gold);
  font-size: 0.95rem; font-weight: 700;
  margin-top: 8px;
  border-radius: var(--radius);
}

.btn-primary:hover {
  background: #e0b84e;
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-primary:active { transform: none; }

.btn-success {
  background: var(--green-dim);
  color: var(--green);
  border-color: rgba(63,185,80,0.25);
}
.btn-success:hover { background: rgba(63,185,80,0.2); border-color: var(--green); }

.btn-danger {
  background: var(--red-dim);
  color: var(--red);
  border-color: rgba(248,81,73,0.25);
}
.btn-danger:hover { background: rgba(248,81,73,0.22); border-color: var(--red); }

.btn-readonly {
  background: rgba(139,148,158,0.1);
  color: var(--text-muted);
  border-color: var(--border-hi);
}
.btn-readonly:hover { background: rgba(139,148,158,0.18); color: var(--text); }

.btn-blue {
  background: var(--blue-dim);
  color: var(--blue);
  border-color: rgba(88,166,255,0.25);
}
.btn-blue:hover { background: rgba(88,166,255,0.2); border-color: var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-hi);
}
.btn-ghost:hover { background: var(--surface2); color: var(--text); }

.btn-small { padding: 7px 14px; font-size: 0.8rem; border-radius: 8px; }

.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Error / Success messages ──────────────────────────────────────── */
.error-message {
  color: var(--red);
  font-size: 0.85rem;
  padding: 10px 14px;
  background: var(--red-dim);
  border: 1px solid rgba(248,81,73,0.2);
  border-radius: 8px;
  margin-top: 14px;
  display: none;
}

.success-message {
  color: var(--green);
  font-size: 0.85rem;
  padding: 10px 14px;
  background: var(--green-dim);
  border: 1px solid rgba(63,185,80,0.2);
  border-radius: 8px;
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════
   DASHBOARD LAYOUT
══════════════════════════════════════════════════════════════════════ */
.dashboard {
  position: relative; z-index: 1;
  min-height: 100vh;
}

/* ── Top bar ───────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.topbar-left {
  display: flex; align-items: center; gap: 14px;
}

.topbar-logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-hi);
}

.topbar-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.topbar-right {
  display: flex; align-items: center; gap: 16px;
}

.user-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 99px;
  padding: 5px 14px 5px 6px;
}

.user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #c47f17 100%);
  display: flex; align-items: center; justify-content: center;
  color: #0d1117; font-weight: 700; font-size: 12px;
}

.user-name {
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 99px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.badge-admin       { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(63,185,80,0.3); }
.badge-superadmin  { background: rgba(188,140,255,0.12); color: var(--purple); border: 1px solid rgba(188,140,255,0.3); }
.badge-readonly    { background: rgba(139,148,158,0.12); color: var(--text-muted); border: 1px solid var(--border-hi); }

.session-timer {
  font-size: 0.75rem; color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  min-width: 56px;
}
.session-timer.warning { color: var(--red); }

.logout-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--border-hi);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.logout-btn:hover { background: var(--red-dim); border-color: rgba(248,81,73,0.3); color: var(--red); }

/* ── Page content ──────────────────────────────────────────────────── */
.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
}

/* ── Section heading ───────────────────────────────────────────────── */
.section-heading {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-heading .sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 2px;
}

/* ── Readonly notice ───────────────────────────────────────────────── */
.readonly-notice {
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
  color: var(--gold);
  font-size: 0.88rem;
}

.readonly-notice h4 { font-size: 0.88rem; color: var(--gold); margin-bottom: 2px; }
.readonly-notice p  { color: rgba(212,168,67,0.75); font-size: 0.82rem; }

/* ══════════════════════════════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════════════════════════════ */
.admin-panel {
  background: var(--surface);
  border: 1px solid rgba(63,185,80,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 36px;
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.admin-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}

.admin-panel-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--green);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px;
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-form input {
  background: var(--surface2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.admin-form input::placeholder { color: var(--text-faint); }
.admin-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.admin-form input.full-col { grid-column: 1 / -1; }

.admin-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.stat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition);
}

.stat-card:hover { border-color: var(--border-hi); }

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════════════════
   SEARCH + TOOLBAR
══════════════════════════════════════════════════════════════════════ */
.toolbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative; flex: 1; min-width: 220px;
}

.search-wrap svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--text-faint); pointer-events: none;
}

.search-wrap input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 11px 14px 11px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap input::placeholder { color: var(--text-faint); }
.search-wrap input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.folder-count-badge {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════════════
   FOLDERS GRID
══════════════════════════════════════════════════════════════════════ */
.folders-section {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.folders-section-header {
  padding: 0 0 20px 0;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}

.folders-section-header .drive-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a73e8, #34a853);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(26,115,232,0.25);
}

.folders-section-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.folders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  background: transparent;
}

/* ── Folder Card ───────────────────────────────────────────────────── */
.folder-card {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition:
    box-shadow var(--transition),
    border-color var(--transition),
    transform var(--transition),
    background var(--transition);
  position: relative;
  overflow: hidden;
  animation: cardReveal 0.4s ease both;
  cursor: default;
}

/* Accent stripe — always visible, subtle at rest */
.folder-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,134,11,0.3) 60%, transparent 100%);
  opacity: 0.35;
  transition: opacity var(--transition);
}

/* Glow ring on hover */
.folder-card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(184,134,11,0.12) 0%, rgba(26,86,219,0.06) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}

.folder-card:hover {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px var(--gold-dim),
    0 8px 28px rgba(0,0,0,0.11),
    0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
  background: #fffdf7;
}

.folder-card:hover::before { opacity: 1; }
.folder-card:hover::after  { opacity: 1; }

/* Make children sit above the ::after overlay */
.folder-card > * { position: relative; z-index: 1; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.folder-card-icon {
  font-size: 2.2rem; margin-bottom: 14px; line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}

.folder-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.folder-card .desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.55;
}

.folder-meta {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.folder-meta span { display: flex; align-items: center; gap: 4px; }

.view-count-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gold-dim);
  border: 1px solid rgba(184,134,11,0.25);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.72rem; font-weight: 700;
}

.folder-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}

/* Primary action button inside card — full width */
.folder-actions .btn-primary {
  flex: 1; padding: 10px 16px;
  font-size: 0.88rem;
}

/* ── Empty state ───────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 40px;
}

.empty-icon {
  font-size: 3.5rem; margin-bottom: 16px; opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ── Loading ───────────────────────────────────────────────────────── */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-faint);
  font-size: 0.9rem;
}

.loading-spinner {
  display: inline-block;
  width: 28px; height: 28px;
  border: 2px solid var(--border-hi);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Pagination ────────────────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 24px 0 8px;
  border-top: none;
}

.page-info {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(30,40,60,0.45);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}

.modal.open { display: flex; }

.modal-content {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  animation: modalIn 0.28s cubic-bezier(0.2,0.8,0.3,1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: none; }
}

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--surface);
  z-index: 1;
}

.modal-header h3 {
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.modal-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border-hi);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--red-dim); color: var(--red); border-color: rgba(248,81,73,0.3); }

.modal-body { padding: 24px; }

.drive-embed {
  width: 100%; height: 580px;
  border: none;
  border-radius: var(--radius);
  background: var(--surface2);
}

/* ══════════════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
══════════════════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  background: var(--surface2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.87rem;
  color: var(--text);
  max-width: 340px;
  pointer-events: auto;
  animation: toastIn 0.3s ease both;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

.toast.success { border-color: rgba(63,185,80,0.3); }
.toast.error   { border-color: rgba(248,81,73,0.3); }
.toast.warning { border-color: rgba(212,168,67,0.3); }
.toast-icon    { font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar { padding: 0 16px; }
  .page-content { padding: 24px 16px; }
  .user-name { display: none; }
  .topbar-brand { font-size: 0.9rem; }
  .admin-form { grid-template-columns: 1fr; }
  .admin-form input.full-col { grid-column: 1; }
  .folders-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .drive-embed { height: 380px; }
  .modal { padding: 12px; }
}

@media (max-width: 480px) {
  .login-card { padding: 32px 24px; }
  .topbar-logo, .topbar-brand { display: none; }
}