:root {
  color-scheme: dark;
  --bg: #07090f;
  --card: #111724;
  --card-soft: #182131;
  --field: rgba(255, 255, 255, 0.065);
  --field-hover: rgba(255, 255, 255, 0.09);
  --text: #f8fafc;
  --muted: #a5adba;
  --soft: #d7dde8;
  --brand: #facc15;
  --brand-2: #f59e0b;
  --brand-3: #fde68a;
  --border: rgba(250, 204, 21, 0.16);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, 0.16), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.14), transparent 34rem),
    linear-gradient(135deg, rgba(253, 230, 138, 0.035), transparent 42%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 10px;
  padding: 5px 8px;
  color: #fed7aa;
  background: rgba(245, 158, 11, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
}

.center-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f8fafc;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(243, 63, 63, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(13, 19, 31, 0.9));
  box-shadow: var(--shadow);
}

.login-card {
  width: min(100%, 440px);
  padding: 32px;
}

.stack {
  display: grid;
  gap: 16px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 720;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 12px;
  color: #f8fafc;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

h3 {
  font-weight: 620;
}

p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

.eyebrow {
  color: var(--brand-3);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.access-note {
  display: inline-flex;
  margin: 6px 0 0;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fed7aa;
  background: rgba(245, 158, 11, 0.09);
  font-size: 13px;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 560;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  background: var(--field);
  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

select {
  color-scheme: dark;
  cursor: pointer;
}

select option,
select optgroup {
  background-color: var(--card);
  color: var(--text);
}

select option:checked,
select option:hover,
select option:focus {
  background-color: var(--brand);
  color: #111724;
}

input::placeholder,
textarea::placeholder {
  color: rgba(203, 213, 225, 0.46);
}

input:hover,
select:hover,
textarea:hover {
  background: var(--field-hover);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(250, 204, 21, 0.78);
  outline: 2px solid rgba(250, 204, 21, 0.18);
  outline-offset: 1px;
  box-shadow: none;
}

.password-field {
  display: block;
  position: relative;
  width: 100%;
}

.password-field input {
  min-height: 48px;
  padding-right: 54px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.password-toggle:hover,
.password-toggle:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  padding: 12px 18px;
  color: #181202;
  background: linear-gradient(135deg, #fde68a, var(--brand), var(--brand-2));
  cursor: pointer;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(250, 204, 21, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(250, 204, 21, 0.24);
}

.button.secondary {
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.12);
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: none;
}

.button.danger {
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.24);
  background: rgba(239, 68, 68, 0.1);
}

.button.danger:hover {
  color: #fff;
  background: rgba(239, 68, 68, 0.18);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.notice {
  display: none;
  border-radius: 16px;
  padding: 12px 14px;
  color: #fff7ed;
  background: rgba(243, 63, 63, 0.18);
  border: 1px solid rgba(243, 63, 63, 0.35);
}

.notice.show {
  display: block;
}

.admin-hero {
  margin-bottom: 16px;
}

.admin-hero h1 {
  margin-bottom: 8px;
}

.admin-menu-bar {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 10px;
  background: rgba(7, 9, 15, 0.96);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.admin-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 0;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.055);
}

.admin-tab {
  min-height: 40px;
  border: 0;
  border-radius: 13px;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 560;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.admin-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.admin-tab.active {
  color: #181202;
  background: linear-gradient(135deg, #fde68a, var(--brand), var(--brand-2));
  box-shadow: 0 14px 32px rgba(250, 204, 21, 0.2);
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.admin-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.admin-wide-card {
  grid-column: 1 / -1;
}

.admin-toolbar {
  margin-bottom: 18px;
}

.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.module {
  padding: 26px;
}

.member-section {
  margin-top: 0;
}

.member-tools {
  display: grid;
  grid-template-columns: auto minmax(170px, 220px) minmax(220px, 280px);
  align-items: center;
  justify-content: end;
  gap: 12px;
  min-width: min(100%, 760px);
}

.member-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.search-field {
  width: 100%;
}

.search-field input,
.search-field select {
  min-height: 42px;
  border-radius: 14px;
  padding: 11px 14px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.member-section .section-heading {
  align-items: center;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.article-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.article-link {
  display: block;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.article-link strong {
  display: block;
  margin-bottom: 4px;
}

.article-link span {
  color: var(--muted);
  font-size: 14px;
}

.reader {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
}

.protected-content {
  user-select: none;
  -webkit-user-select: none;
}

.protected-content h2,
.protected-content h3 {
  color: #fff;
}

.protected-content p,
.protected-content li {
  color: #d7def1;
  font-size: 18px;
  line-height: 1.8;
}

.watermark {
  pointer-events: none;
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  opacity: 0.028;
  transform: rotate(-18deg);
  z-index: 10;
}

.watermark span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.member-app {
  min-height: 100vh;
}

.member-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  padding: 18px 14px 14px;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 23, 36, 0.98), rgba(10, 14, 22, 0.98));
  box-shadow: 18px 0 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 4px 6px;
  text-decoration: none;
}

.sidebar-brand .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.sidebar-brand span:last-child {
  color: #f8fafc;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.sidebar-user {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(250, 204, 21, 0.14);
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.05);
}

.sidebar-user .eyebrow {
  margin-bottom: 6px;
}

.sidebar-name {
  margin: 0;
  color: #f8fafc;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

.sidebar-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  overflow: hidden;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.sidebar-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-link.active {
  color: #181202;
  background: linear-gradient(135deg, #fde68a, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.18);
}

.sidebar-modules {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.sidebar-tree-module {
  padding-bottom: 8px;
}

.sidebar-tree-module-title {
  margin: 0;
  padding: 0 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.sidebar-tree-line {
  margin: 4px 0 2px 10px;
  color: rgba(148, 163, 184, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1;
}

.sidebar-tree-list {
  display: grid;
  gap: 2px;
}

.sidebar-tree-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 7px 6px;
  border-radius: 10px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.tree-branch {
  flex-shrink: 0;
  width: 24px;
  color: rgba(148, 163, 184, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.45;
}

.tree-label {
  flex: 1;
  min-width: 0;
}

.sidebar-tree-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.sidebar-tree-item.active {
  color: #181202;
  background: rgba(250, 204, 21, 0.92);
  font-weight: 600;
}

.sidebar-tree-item.active .tree-branch {
  color: rgba(24, 18, 2, 0.55);
}

.sidebar-tree-item.locked {
  color: rgba(226, 232, 240, 0.82);
  cursor: default;
}

.sidebar-tree-item.locked .tree-branch {
  color: rgba(148, 163, 184, 0.62);
}

.tree-soon {
  flex-shrink: 0;
  margin-top: 1px;
  padding: 2px 6px;
  border-radius: 999px;
  color: rgba(250, 204, 21, 0.9);
  background: rgba(250, 204, 21, 0.1);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.member-shell {
  min-height: 100vh;
  margin-left: 300px;
}

.member-hero {
  margin-bottom: 24px;
}

.member-welcome-card h2 {
  margin-top: 10px;
}

.sidebar-footer {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  flex-shrink: 0;
}

.sidebar-footer .button {
  width: 100%;
  justify-content: center;
}

.member-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 30;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(12px);
}

.sidebar-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.sidebar-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.topbar-title {
  margin: 0;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 650;
}

.member-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
}

.member-content .grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(2, 6, 23, 0.62);
}

.sidebar-overlay.show {
  display: block;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.18);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1100px;
}

th,
td {
  border-bottom: 1px solid rgba(148, 163, 184, 0.11);
  padding: 14px 13px;
  text-align: left;
  vertical-align: middle;
}

td .button {
  margin: 3px;
  min-height: 38px;
  padding: 8px 12px;
  white-space: nowrap;
}

.actions-cell {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  min-width: 430px;
  white-space: nowrap;
}

.actions-cell .button {
  margin: 0;
}

th {
  color: #fcd34d;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: rgba(250, 204, 21, 0.045);
}

td {
  color: var(--soft);
  font-weight: 420;
}

tbody tr {
  transition: background 160ms ease;
}

tbody tr:hover {
  background: rgba(250, 204, 21, 0.035);
}

.pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(250, 204, 21, 0.08);
  color: #fde68a;
  font-size: 12px;
  font-weight: 560;
}

.pill.success {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
}

.icon-button {
  width: 42px;
  min-height: 42px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  z-index: 100;
}

.modal.show {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.76);
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 26px;
  z-index: 1;
  backdrop-filter: none;
  transform: translateZ(0);
  will-change: auto;
}

.dialog-card {
  width: min(100%, 440px);
}

.dialog-card h2 {
  margin-bottom: 8px;
}

.dialog-card p {
  margin-bottom: 0;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  grid-column: 1 / -1;
}

.editor-panel {
  display: grid;
  gap: 14px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.editor-toolbar-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.editor-tool {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.editor-panel textarea {
  transition: border-color 160ms ease;
}

.editor-panel textarea:focus {
  outline: none;
  border-color: rgba(250, 204, 21, 0.78);
}

.editor-hint {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.preview-card {
  display: grid;
  gap: 12px;
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(2, 6, 23, 0.22);
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-head h3 {
  margin: 0;
  font-size: 16px;
}

.article-preview {
  min-height: 320px;
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.preview-empty {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .member-sidebar {
    transform: translateX(-100%);
    transition: transform 220ms ease;
  }

  .member-sidebar.open {
    transform: translateX(0);
  }

  .member-shell {
    margin-left: 0;
  }

  .member-topbar {
    display: flex;
  }

  .member-content {
    width: min(100% - 24px, 1120px);
    padding: 20px 0 28px;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding: 20px 0;
  }

  .center-page {
    align-items: start;
    padding: 14px;
  }

  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions,
  .header-actions .button {
    width: 100%;
  }

  .login-card {
    width: 100%;
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .admin-menu-bar {
    position: sticky;
    top: 8px;
    align-items: stretch;
    flex-direction: column;
  }

  .admin-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .admin-tab {
    width: 100%;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .editor-grid {
    grid-template-columns: 1fr;
  }

  .module {
    padding: 20px;
  }

  th,
  td {
    padding: 10px 8px;
  }

  td .button {
    width: 100%;
    margin: 3px 0;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .member-tools,
  .member-stats,
  .search-field {
    width: 100%;
    justify-items: stretch;
    justify-content: flex-start;
  }

  .member-tools {
    grid-template-columns: 1fr;
  }

  .toolbar-actions,
  .toolbar-actions .button {
    width: 100%;
  }

  .actions-cell {
    min-width: 190px;
  }

  .modal {
    align-items: end;
    padding: 10px;
  }

  .modal-card {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
    padding: 20px;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 10px;
    font-size: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .login-card {
    padding: 18px;
  }

  h1 {
    font-size: 34px;
  }
}
