:root {
  --ink: #0c1222;
  --ink-soft: #1a2336;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --bg: #f1f5f9;
  --accent: #0f766e;
  --accent-hover: #0d9488;
  --accent-soft: #ccfbf1;
  --accent-ink: #134e4a;
  --warn: #b45309;
  --warn-soft: #fef3c7;
  --danger: #b91c1c;
  --danger-soft: #fee2e2;
  --success: #047857;
  --success-soft: #d1fae5;
  --info: #1d4ed8;
  --info-soft: #dbeafe;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --sidebar-w: 260px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.hidden { display: none !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 4px 12px rgba(15, 118, 110, 0.25);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink); }
.btn-secondary:hover { background: var(--surface-2); border-color: var(--muted); }
.btn-ghost { color: var(--slate); padding: 0.5rem 0.75rem; }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #991b1b; }
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm); color: var(--slate);
  transition: background 0.2s, color 0.2s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--ink); }
.link-btn { color: var(--accent); font-weight: 600; cursor: pointer; padding: 0; }
.link-btn:hover { text-decoration: underline; }

label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; font-weight: 500; }
label span { color: var(--slate); }
input[type="text"], input[type="password"], input[type="date"], input[type="search"], select, textarea {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { resize: vertical; min-height: 90px; }
.form-error { color: var(--danger); font-size: 0.85rem; min-height: 1.2em; }
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid.two { grid-template-columns: 1fr; } }

.auth-screen {
  min-height: 100vh; display: grid; place-items: center; padding: 1.5rem;
  position: relative; overflow: hidden;
}
.auth-backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(15, 118, 110, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(29, 78, 216, 0.1), transparent 50%),
    linear-gradient(160deg, #e8f0f4 0%, #f1f5f9 40%, #eef2ff 100%);
  animation: bgShift 18s ease-in-out infinite alternate;
}
@keyframes bgShift { from { transform: scale(1); } to { transform: scale(1.05); } }
.auth-panel {
  position: relative; width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem; box-shadow: var(--shadow-lg);
  animation: riseIn 0.5s var(--ease);
}
.auth-brand { text-align: center; margin-bottom: 1.75rem; }
.logo-mark { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 0.85rem; }
.logo-mark.sm { width: 32px; height: 32px; margin: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-tagline { color: var(--muted); font-size: 0.95rem; margin-top: 0.25rem; }
.auth-form h2 { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.25rem; }
.auth-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.auth-form form { display: flex; flex-direction: column; gap: 0.9rem; }
.auth-switch { text-align: center; margin-top: 1.25rem; font-size: 0.9rem; color: var(--slate); }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-shell { display: flex; min-height: 100vh; }
.sidebar {
  width: var(--sidebar-w); background: var(--ink); color: #e2e8f0;
  display: flex; flex-direction: column; padding: 1.25rem 1rem;
  position: fixed; inset: 0 auto 0 0; z-index: 40;
  transition: transform 0.3s var(--ease);
}
.sidebar-brand {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.5rem 0.65rem 1.25rem; font-weight: 700; font-size: 1.1rem;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0.85rem; border-radius: var(--radius-sm);
  color: #94a3b8; font-weight: 500; font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
}
.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-item:hover { background: rgba(255,255,255,0.06); color: #f1f5f9; }
.nav-item.active {
  background: rgba(15, 118, 110, 0.35); color: #fff;
  box-shadow: inset 3px 0 0 var(--accent-hover);
}
.sidebar-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.user-chip { display: flex; align-items: center; gap: 0.65rem; padding: 0.35rem 0.5rem; }
.avatar {
  width: 36px; height: 36px; border-radius: 10px; background: var(--accent);
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.user-name { font-size: 0.85rem; font-weight: 600; color: #f1f5f9; }
.user-handle { font-size: 0.75rem; color: #64748b; }
.sidebar-footer .btn-ghost { color: #94a3b8; justify-content: flex-start; }
.sidebar-footer .btn-ghost:hover { background: rgba(255,255,255,0.06); color: #fff; }
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 23, 42, 0.45); z-index: 35; }
.sidebar-overlay.show { display: block; }

.main-wrap { flex: 1; margin-left: var(--sidebar-w); min-width: 0; display: flex; flex-direction: column; min-height: 100vh; }
.topbar {
  display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
}
.page-title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; flex: 1; }
.topbar-actions { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.content { padding: 1.5rem; flex: 1; animation: fadeView 0.35s var(--ease); }
@keyframes fadeView {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-only { display: none; }
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-wrap { margin-left: 0; }
  .mobile-only { display: inline-flex; }
}

.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 1.75rem;
}
@media (max-width: 1100px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.25rem; box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: riseIn 0.45s var(--ease) both;
}
.stat-card:nth-child(1) { animation-delay: 0.02s; }
.stat-card:nth-child(2) { animation-delay: 0.06s; }
.stat-card:nth-child(3) { animation-delay: 0.1s; }
.stat-card:nth-child(4) { animation-delay: 0.14s; }
.stat-card:nth-child(5) { animation-delay: 0.18s; }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-bottom: 0.35rem; }
.stat-value {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.1;
}
.stat-card.accent .stat-value { color: var(--accent); }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.panel-header h2 { font-size: 1rem; font-weight: 600; }
.panel-body { padding: 1.25rem; }
.section-gap { display: flex; flex-direction: column; gap: 1.25rem; }
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.25rem; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.toolbar { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; margin-bottom: 1.15rem; }
.toolbar .search-wrap { flex: 1; min-width: 180px; max-width: 320px; }
.toolbar select { width: auto; min-width: 140px; }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.project-card, .idea-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.2s;
  animation: riseIn 0.4s var(--ease) both;
}
.project-card:hover, .idea-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong);
}
.project-card.archived { opacity: 0.72; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.card-title { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.card-title a:hover { color: var(--accent); }
.card-desc {
  font-size: 0.88rem; color: var(--slate);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.35rem; }
.card-actions {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  border-top: 1px solid var(--line); padding-top: 0.75rem;
}

.badge {
  display: inline-flex; align-items: center; padding: 0.2rem 0.55rem; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; background: var(--surface-2); color: var(--slate);
  border: 1px solid var(--line);
}
.badge.platform { background: var(--info-soft); color: var(--info); border-color: transparent; }
.badge.status-draft { background: var(--surface-2); color: var(--muted); }
.badge.status-scheduled { background: var(--warn-soft); color: var(--warn); border-color: transparent; }
.badge.status-published { background: var(--success-soft); color: var(--success); border-color: transparent; }
.badge.archived { background: var(--line); color: var(--slate); }
.badge.tag { background: var(--accent-soft); color: var(--accent-ink); border-color: transparent; }

.empty-state { text-align: center; padding: 3rem 1.5rem; color: var(--muted); }
.empty-state h3 { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 0.35rem; }
.empty-state p { margin-bottom: 1.25rem; font-size: 0.95rem; }

.idea-list { display: flex; flex-direction: column; gap: 0.65rem; }
.idea-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.75rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.1rem; transition: border-color 0.2s, box-shadow 0.2s;
  animation: riseIn 0.35s var(--ease) both;
}
.idea-row:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.idea-row-main { min-width: 0; }
.idea-row h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.25rem; }
.idea-row .card-desc { -webkit-line-clamp: 1; }
.idea-row-side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.idea-meta-line { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.meta-date { font-size: 0.75rem; color: var(--muted); }

.cal-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.cal-nav h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
}
.cal-dow {
  background: var(--surface-2); padding: 0.65rem 0.35rem; text-align: center;
  font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.04em; border-bottom: 1px solid var(--line);
}
.cal-day {
  min-height: 100px; padding: 0.4rem; background: var(--surface);
  border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}
.cal-day:nth-child(7n) { border-right: none; }
.cal-day.other { background: var(--surface-2); color: var(--muted); }
.cal-day.today { background: linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 40%); }
.cal-day-num {
  font-size: 0.78rem; font-weight: 600; margin-bottom: 0.35rem;
  width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%;
}
.cal-day.today .cal-day-num { background: var(--accent); color: #fff; }
.cal-event {
  display: block; font-size: 0.68rem; font-weight: 500; padding: 0.2rem 0.35rem;
  border-radius: 4px; background: var(--accent-soft); color: var(--accent-ink);
  margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  cursor: pointer; transition: transform 0.15s;
}
.cal-event:hover { transform: scale(1.02); }
.cal-event.linkedin { background: #dbeafe; color: #1e40af; }
.cal-event.x { background: #f1f5f9; color: #0f172a; }
.cal-event.instagram { background: #fce7f3; color: #9d174d; }
.cal-event.blog { background: #d1fae5; color: #065f46; }
.upcoming-list { display: flex; flex-direction: column; gap: 0.65rem; }
.upcoming-item {
  display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.75rem;
  border-radius: var(--radius-sm); border: 1px solid var(--line); transition: background 0.2s;
}
.upcoming-item:hover { background: var(--surface-2); }
.upcoming-date {
  flex-shrink: 0; width: 48px; text-align: center; background: var(--accent-soft);
  border-radius: 8px; padding: 0.4rem 0.25rem;
}
.upcoming-date .day { font-size: 1.15rem; font-weight: 700; color: var(--accent-ink); line-height: 1; }
.upcoming-date .mon { font-size: 0.65rem; text-transform: uppercase; color: var(--accent); font-weight: 600; }
@media (max-width: 700px) {
  .cal-day { min-height: 64px; }
  .cal-event { display: none; }
  .cal-day.has-events .cal-day-num::after {
    content: ""; display: block; width: 5px; height: 5px;
    background: var(--accent); border-radius: 50%; margin: 2px auto 0;
  }
}

.ai-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.25rem; align-items: start; }
@media (max-width: 800px) { .ai-layout { grid-template-columns: 1fr; } }
.ai-form { display: flex; flex-direction: column; gap: 1rem; }
.title-suggestions { display: flex; flex-direction: column; gap: 0.65rem; }
.suggestion {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.9rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2);
  animation: riseIn 0.4s var(--ease) both; transition: border-color 0.2s, background 0.2s;
}
.suggestion:hover { border-color: var(--accent); background: var(--surface); }
.suggestion-num {
  width: 28px; height: 28px; border-radius: 8px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.suggestion-text { flex: 1; font-weight: 500; font-size: 0.95rem; line-height: 1.4; }
.ai-loading { display: flex; align-items: center; gap: 0.75rem; padding: 2rem; color: var(--muted); justify-content: center; }
.spinner {
  width: 22px; height: 22px; border: 2.5px solid var(--line-strong);
  border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.75rem;
  background: var(--accent-soft); color: var(--accent-ink); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; animation: riseIn 0.3s var(--ease) both;
}
.tag-pill button {
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
  color: var(--accent); font-size: 0.9rem; line-height: 1; opacity: 0.7;
}
.tag-pill button:hover { opacity: 1; background: rgba(15,118,110,0.15); }
.tag-checkboxes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-check {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.7rem;
  border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.82rem;
  font-weight: 500; cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.tag-check input { accent-color: var(--accent); }
.tag-check:has(input:checked) {
  background: var(--accent-soft); border-color: var(--accent); color: var(--accent-ink);
}

.profile-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 900px; }
@media (max-width: 700px) { .profile-layout { grid-template-columns: 1fr; } }
.profile-avatar-lg {
  width: 64px; height: 64px; border-radius: 16px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem;
}

.modal-root {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem;
}
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(12, 18, 34, 0.5); backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative; width: min(520px, 100%); max-height: min(90vh, 720px);
  background: var(--surface); border-radius: 16px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; animation: riseIn 0.3s var(--ease); overflow: hidden;
}
.modal.wide { width: min(640px, 100%); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--line);
}
.modal-header h2 { font-size: 1.1rem; font-weight: 600; }
.modal-body { padding: 1.25rem; overflow-y: auto; flex: 1; }
.modal-footer {
  display: flex; justify-content: flex-end; gap: 0.5rem; padding: 1rem 1.25rem;
  border-top: 1px solid var(--line); background: var(--surface-2);
}

.toast-container {
  position: fixed; top: 1rem; right: 1rem; z-index: 200;
  display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none;
}
.toast {
  pointer-events: auto; background: var(--ink); color: #f1f5f9;
  padding: 0.75rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.88rem;
  font-weight: 500; box-shadow: var(--shadow-lg); animation: toastIn 0.35s var(--ease); max-width: 320px;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.muted { color: var(--muted); }
.text-sm { font-size: 0.85rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.divider { height: 1px; background: var(--line); margin: 1.25rem 0; }
.quick-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-link {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.85rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; transition: background 0.2s, border-color 0.2s;
}
.chip-link:hover { background: var(--accent-soft); border-color: transparent; color: var(--accent-ink); }
.demo-hint {
  background: var(--accent-soft); color: var(--accent-ink); border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem; font-size: 0.82rem; margin-bottom: 1rem;
}
#form-login input[readonly] {
  cursor: default;
  letter-spacing: 0.12em;
  background: var(--surface-2);
}
