/* Scoped to the admin panel only - never imported by public pages. */

.admin-shell {
  height: 100vh;
  display: flex;
  background: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #071e46 0%, #0b3178 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 22px 14px;
  box-shadow: 4px 0 20px rgba(7,30,70,.15);
  overflow-y: auto;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 22px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.admin-sidebar-brand-text { display: flex; align-items: center; gap: 10px; }
.admin-sidebar-brand-text span { color: #ff4d4d !important; }

.admin-sidebar-close, .admin-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
/* Close button sits on the dark sidebar */
.admin-sidebar-close { color: rgba(255,255,255,.7); }
.admin-sidebar-close:hover { color: #fff; }
/* Menu toggle sits on the white topbar */
.admin-menu-toggle { color: #334155; }
.admin-menu-toggle:hover { color: #0b3178; }

.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  z-index: 190;
  animation: admin-fade-in .15s ease;
}

.admin-sidebar-version {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.admin-sidebar-version-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.admin-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .15s ease;
}

.admin-version-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

.admin-version-badge i { font-size: 9px; color: rgba(255,255,255,.35); }
.admin-version-badge:hover i { color: rgba(255,255,255,.7); }

.admin-version-badge-dark {
  background: rgba(11,49,120,.08);
  border-color: transparent;
  color: #0b3178;
  cursor: default;
}
.admin-version-badge-dark i { color: #0b3178; }

.admin-nav-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  margin-bottom: 4px;
  border-radius: 10px;
  color: rgba(255,255,255,.7) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s ease;
  border-left: 3px solid transparent;
}

.admin-nav-link i { width: 18px; text-align: center; font-size: 14px; }

.admin-nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,.08);
}

.admin-nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.12);
  border-left-color: #ed1c24;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.admin-main { flex: 1; min-width: 0; min-height: 0; display: flex; flex-direction: column; }

.admin-topbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  box-shadow: 0 1px 3px rgba(15,23,42,.04);
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-topbar-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.admin-topbar-user {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a !important;
}

.admin-content { flex: 1; min-height: 0; padding: 28px; overflow-y: auto; }

.admin-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.04);
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none !important;
}

.admin-btn-primary { background: var(--grad-blue, #0b3178); color: #fff !important; }
.admin-btn-primary:hover { filter: brightness(1.1); }
.admin-btn-danger { background: #fff; color: #dc2626 !important; border: 1.5px solid #fecaca; }
.admin-btn-danger:hover { background: #fef2f2; }
.admin-btn-outline { background: #fff; color: #0b3178 !important; border: 1.5px solid #e2e8f0; }
.admin-btn-outline:hover { border-color: #0b3178; }

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-search {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}

.admin-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 13px;
}

.admin-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  transition: all .2s ease;
}

.admin-search input:focus {
  outline: none;
  border-color: #0b3178;
  box-shadow: 0 0 0 3px rgba(11,49,120,.08);
}

.admin-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
}
.admin-search-clear:hover { color: #64748b; }

.admin-select {
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  background: #fff;
}
.admin-select:focus { outline: none; border-color: #0b3178; }

.admin-result-count { font-size: 13px; color: #94a3b8; font-weight: 600; white-space: nowrap; }

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 0 4px;
}
.admin-pagination button {
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
}
.admin-pagination button:hover:not(:disabled) { border-color: #0b3178; color: #0b3178; }
.admin-pagination button.active { background: #0b3178; border-color: #0b3178; color: #fff !important; }
.admin-pagination button:disabled { opacity: .4; cursor: not-allowed; }

/* ─── Modern data table ─────────────────────────────────────────────────── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.admin-table thead th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .6px;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
  white-space: nowrap;
}
.admin-table thead th:first-child { border-top-left-radius: 14px; }
.admin-table thead th:last-child { border-top-right-radius: 14px; }

.admin-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background .15s ease;
}
.admin-table tbody tr:last-child { border-bottom: none; }
.admin-table tbody tr:hover { background: #fafcff; }
.admin-table tbody tr:hover .admin-row-actions { opacity: 1; }

.admin-table td { padding: 14px 20px; vertical-align: middle; color: #334155; }

.admin-row-main { display: flex; align-items: center; gap: 14px; }

.admin-row-thumb {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  object-fit: cover; background: var(--grad-blue, #0b3178);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 15px;
  box-shadow: 0 2px 6px rgba(11,49,120,.15);
}

.admin-row-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  background: var(--grad-blue, #0b3178);
}

.admin-row-title { font-weight: 700; color: #0f172a; font-size: 14px; line-height: 1.35; }
.admin-row-sub { font-size: 12.5px; color: #94a3b8; margin-top: 2px; }

/* Status pill with leading dot */
.admin-status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px 4px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: capitalize;
}
.admin-status-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.admin-status-pill.draft { background: #f1f5f9; color: #64748b; }
.admin-status-pill.published { background: rgba(16,185,129,.12); color: #059669; }
.admin-status-pill.pending { background: rgba(217,119,6,.12); color: #d97706; }
.admin-status-pill.approved { background: rgba(16,185,129,.12); color: #059669; }

/* Category chips (small, inline, used under a row title) */
.admin-chip {
  display: inline-block; padding: 2px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
  background: rgba(237,28,36,.08); color: #ed1c24; margin-top: 4px;
}

/* ─── Card-grid list layout (replaces <table> on admin list pages) ──────── */
.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.admin-list-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.admin-list-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,.08); transform: translateY(-2px); }
.admin-list-card:hover .admin-row-actions { opacity: 1; }

.admin-list-card-thumb {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: var(--grad-blue, #0b3178);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 24px;
}
.admin-list-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.admin-list-card-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.admin-list-card-body { flex: 1; }
.admin-list-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 12px; border-top: 1px solid #f1f5f9;
}
.admin-list-card-meta { font-size: 12.5px; color: #94a3b8; }

.admin-load-more {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 24px 0; color: #94a3b8; font-size: 13px; font-weight: 600;
  grid-column: 1 / -1;
}

/* Icon-only row action buttons - subtle, brighten on row hover */
.admin-row-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 6px;
  opacity: .85; transition: opacity .15s ease;
}
.admin-icon-btn {
  width: 32px; height: 32px; border-radius: 9px; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #94a3b8; cursor: pointer;
  font-size: 13px; text-decoration: none !important;
  transition: all .15s ease;
}
.admin-icon-btn:hover { background: #f1f5f9; color: #334155; }
.admin-icon-btn.view:hover { background: rgba(11,49,120,.08); color: #0b3178 !important; }
.admin-icon-btn.edit:hover { background: rgba(11,49,120,.08); color: #0b3178 !important; }
.admin-icon-btn.danger:hover { background: rgba(220,38,38,.08); color: #dc2626 !important; }
.admin-icon-btn:disabled { opacity: .3; cursor: not-allowed; background: transparent !important; color: #94a3b8 !important; }

/* Empty state */
.admin-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 56px 20px; text-align: center;
}
.admin-empty i { font-size: 30px; color: #cbd5e1; margin-bottom: 14px; }
.admin-empty-title { font-size: 14.5px; font-weight: 700; color: #475569; margin-bottom: 4px; }
.admin-empty-sub { font-size: 13px; color: #94a3b8; }

.admin-form-group { margin-bottom: 18px; }
.admin-form-group label { display: block; font-size: 13px; font-weight: 700; color: #334155; margin-bottom: 6px; }
.admin-form-control {
  width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  font-size: 14px; color: #0f172a;
}
.admin-form-control:focus { outline: none; border-color: #0b3178; }
.admin-form-control:-webkit-autofill,
.admin-form-control:-webkit-autofill:hover,
.admin-form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #0f172a;
  transition: background-color 9999s ease-in-out 0s;
}

/* ─── Settings secondary sidebar ─────────────────────────────────────────── */
.admin-settings-layout { display: flex; gap: 24px; align-items: flex-start; }
.admin-subnav {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 8px 24px rgba(15,23,42,.04);
}
.admin-subnav-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: #64748b !important;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 600;
}
.admin-subnav-link i { width: 16px; text-align: center; font-size: 13px; }
.admin-subnav-link:hover { background: #f8fafc; color: #0f172a !important; }
.admin-subnav-link.active { background: rgba(11,49,120,.08); color: #0b3178 !important; }
.admin-settings-content { flex: 1; min-width: 0; }

/* ─── Settings rows + toggle switch ─────────────────────────────────────── */
.admin-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.admin-settings-row + .admin-settings-row { border-top: 1px solid #f1f5f9; }
.admin-settings-label { font-size: 14.5px; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
.admin-settings-sub { font-size: 13px; color: #94a3b8; max-width: 460px; line-height: 1.5; }

.admin-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  border: none;
  background: #e2e8f0;
  cursor: pointer;
  transition: background .2s ease;
}
.admin-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.admin-toggle.on { background: #059669; }
.admin-toggle.on::after { transform: translateX(20px); }
.admin-toggle:disabled { opacity: .6; cursor: not-allowed; }

/* ─── Tabs (edit-user modal, My Profile page) ───────────────────────────── */
.admin-tabs {
  display: flex; gap: 4px; border-bottom: 1.5px solid #eef2f6; margin-bottom: 20px;
}
.admin-tab-btn {
  padding: 10px 4px; margin-right: 20px; border: none; background: transparent;
  font-size: 13.5px; font-weight: 700; color: #94a3b8; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1.5px;
}
.admin-tab-btn:hover { color: #334155; }
.admin-tab-btn.active { color: #0b3178; border-bottom-color: #0b3178; }

/* ─── 2FA setup block ────────────────────────────────────────────────────── */
.admin-2fa-qr {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; background: #f8fafc; border-radius: 12px; margin-bottom: 16px;
}
.admin-2fa-qr img { width: 180px; height: 180px; border-radius: 8px; background: #fff; padding: 8px; }
.admin-2fa-secret {
  font-family: monospace; font-size: 13px; letter-spacing: 1px; color: #334155;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 8px 14px;
  word-break: break-all; text-align: center;
}

.admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #071e46 0%, #0b3178 55%, #1e40af 100%);
  padding: 20px;
}
.admin-login-card {
  width: 100%; max-width: 380px; background: #fff; border-radius: 16px;
  padding: 36px 32px; box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.admin-btn-solid-danger { background: linear-gradient(135deg,#c01118 0%,#ed1c24 55%,#ff4b2b 100%); color: #fff !important; }
.admin-btn-solid-danger:hover { filter: brightness(1.08); }

/* ─── Shared modal overlay (confirm dialog, forms) ──────────────────────── */
.admin-modal-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 1000;
  animation: admin-fade-in .15s ease;
}
.admin-modal-card {
  width: 100%; max-width: 400px; max-height: 85vh; overflow-y: auto;
  background: #fff; border-radius: 16px;
  padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.25);
  animation: admin-pop-in .18s ease;
}

@keyframes admin-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes admin-pop-in { from { opacity: 0; transform: scale(.96) translateY(4px); } to { opacity: 1; transform: none; } }

/* ─── Confirm dialog ─────────────────────────────────────────────────────── */
.admin-confirm-card { text-align: center; padding: 32px 28px 28px; }
.admin-confirm-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,49,120,.08); color: #0b3178; font-size: 20px;
}
.admin-confirm-icon.danger { background: rgba(220,38,38,.1); color: #dc2626; }
.admin-confirm-title { font-size: 16.5px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.admin-confirm-message { font-size: 13.5px; color: #64748b; line-height: 1.6; margin-bottom: 24px; }
.admin-confirm-actions { display: flex; gap: 10px; }

/* ─── Changelog modal ────────────────────────────────────────────────────── */
.admin-changelog-card { max-width: 560px; padding: 0; max-height: 80vh; display: flex; flex-direction: column; }
.admin-changelog-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #eef2f6; flex-shrink: 0;
}
.admin-changelog-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: #0f172a; margin: 0; }
.admin-changelog-title i { color: #0b3178; font-size: 14px; }
.admin-changelog-body { padding: 20px 24px 24px; overflow-y: auto; }

.admin-changelog-entry { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid #f1f5f9; }
.admin-changelog-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.admin-changelog-entry-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.admin-changelog-date { font-size: 12px; color: #94a3b8; font-weight: 600; }

.admin-changelog-section { margin-bottom: 12px; }
.admin-changelog-section:last-child { margin-bottom: 0; }
.admin-changelog-section-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 6px; color: #64748b;
}
.admin-changelog-section-label.added { color: #059669; }
.admin-changelog-section-label.fixed { color: #d97706; }
.admin-changelog-section-label.changed { color: #0b3178; }
.admin-changelog-list { margin: 0; padding-left: 20px; }
.admin-changelog-list li { font-size: 13.5px; color: #334155; line-height: 1.6; margin-bottom: 4px; }

/* ─── Toasts ─────────────────────────────────────────────────────────────── */
.admin-toast-stack {
  position: fixed; top: 20px; right: 20px; z-index: 2000;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px;
}
.admin-toast {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff; border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(15,23,42,.15);
  border-left: 4px solid #94a3b8;
  font-size: 13.5px; font-weight: 600; color: #0f172a;
  animation: admin-toast-in .2s ease;
}
.admin-toast i:first-child { font-size: 15px; margin-top: 1px; }
.admin-toast span { flex: 1; line-height: 1.5; }
.admin-toast button {
  background: none; border: none; color: #94a3b8; cursor: pointer;
  padding: 0; font-size: 12px; flex-shrink: 0;
}
.admin-toast button:hover { color: #64748b; }

.admin-toast-success { border-left-color: #059669; }
.admin-toast-success i:first-child { color: #059669; }
.admin-toast-error { border-left-color: #dc2626; }
.admin-toast-error i:first-child { color: #dc2626; }
.admin-toast-info { border-left-color: #0b3178; }
.admin-toast-info i:first-child { color: #0b3178; }

@keyframes admin-toast-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

/* ─── Responsive (tablet/mobile) ─────────────────────────────────────────── */
@media (max-width: 880px) {
  .admin-menu-toggle { display: flex; }
  .admin-sidebar-close { display: flex; }
  .admin-sidebar-backdrop { display: block; }

  .admin-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform .25s ease;
  }
  .admin-sidebar.open { transform: translateX(0); }

  .admin-topbar { padding: 0 16px; }
  .admin-content { padding: 16px; }

  .admin-settings-layout { flex-direction: column; }
  .admin-subnav { width: 100%; flex-direction: row; overflow-x: auto; }
  .admin-subnav-link { white-space: nowrap; }

  .admin-toast-stack { left: 12px; right: 12px; max-width: none; }
}

@media (max-width: 480px) {
  .admin-search { min-width: 0; flex-basis: 100%; }
  .admin-select { flex: 1; }
  .admin-modal-card { padding: 20px; }
  .admin-login-card { padding: 28px 22px; }
}
