:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #123044;
  background: #eef7fb;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(46, 169, 239, 0.18), transparent 30rem),
    linear-gradient(135deg, #f6fbff 0%, #eaf6f7 46%, #f7faf5 100%);
}

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

button {
  border: 0;
  cursor: pointer;
}

.splash-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0f7fc7, #1db7d2);
}

.splash-logo {
  width: min(58vw, 240px);
  padding: 18px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 26px 70px rgba(4, 49, 82, 0.25);
  animation: rise 0.7s ease both;
}

.splash-app-icon {
  width: min(34vw, 132px);
  height: min(34vw, 132px);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(4, 49, 82, 0.25);
  animation: rise 0.7s ease both;
}

.splash-title {
  color: white;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 0;
}

.login-visual-img {
  width: min(100%, 520px);
  max-height: 300px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(27, 80, 109, 0.12);
}

.splash-pulse {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  animation: pulse 1.2s ease-out infinite;
}

.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
  gap: 36px;
  align-items: center;
  padding: clamp(22px, 6vw, 70px);
}

.login-panel {
  display: grid;
  gap: 26px;
  animation: rise 0.5s ease both;
}

.login-logo {
  width: 180px;
}

.eyebrow {
  color: #0d76b8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.login-copy h1 {
  max-width: 680px;
  margin: 10px 0 16px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: #09293d;
}

.login-copy p {
  max-width: 560px;
  margin: 0;
  color: #557181;
  font-size: 1.08rem;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(19, 72, 99, 0.08);
  color: #285366;
  font-weight: 700;
}

.login-card,
.form-card,
.content-card,
.appointment-card,
.room-card,
.stat-card,
.action-card {
  border: 1px solid rgba(65, 119, 143, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 55px rgba(27, 80, 109, 0.1);
  backdrop-filter: blur(18px);
}

.login-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
}

.login-card h2 {
  margin: 0;
  font-size: 1.55rem;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  color: #294c5d;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9dce5;
  background: white;
  color: #14354a;
  border-radius: 14px;
  padding: 13px 14px;
  outline: 0;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: #0f7fc7;
  box-shadow: 0 0 0 4px rgba(15, 127, 199, 0.12);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 5px;
  border-radius: 16px;
  background: #edf6fa;
}

.segmented button {
  min-height: 44px;
  border-radius: 12px;
  background: transparent;
  color: #477082;
  font-weight: 800;
}

.segmented .selected {
  background: white;
  color: #0c6fb0;
  box-shadow: 0 8px 18px rgba(25, 86, 118, 0.1);
}

.primary-button,
.secondary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, #0f7fc7, #18a8ce);
  box-shadow: 0 16px 34px rgba(15, 127, 199, 0.25);
}

.secondary-button {
  color: #0d6da9;
  background: #e7f5fc;
}

.danger-button {
  color: #b22a3a;
  background: #fff0f1;
}

.primary-button:hover,
.secondary-button:hover,
.danger-button:hover,
.action-card:hover {
  transform: translateY(-2px);
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 282px 1fr;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border-right: 1px solid rgba(85, 130, 151, 0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(20px);
  z-index: 20;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-brand img {
  width: 160px;
}

.app-nav {
  display: grid;
  gap: 8px;
}

.app-nav button,
.logout-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 14px;
  background: transparent;
  color: #476878;
  font-weight: 800;
  text-align: left;
}

.app-nav .active {
  color: #0f6fab;
  background: #e8f5fb;
}

.logout-button {
  margin-top: auto;
  color: #b22a3a;
  background: #fff0f1;
}

.main-area {
  min-width: 0;
  padding: 24px;
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.topbar h1 {
  margin: 0;
  color: #0a2d43;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  letter-spacing: 0;
}

.topbar span {
  color: #628092;
  font-weight: 750;
}

.role-chip {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e6f5fb;
  color: #0f6fab !important;
  text-transform: capitalize;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #174057;
  background: white;
  box-shadow: 0 12px 28px rgba(28, 79, 105, 0.11);
}

.mobile-only {
  display: none;
}

.page-stack {
  display: grid;
  gap: 20px;
  animation: rise 0.28s ease both;
}

.stats-grid,
.action-grid,
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats-grid.three,
.action-grid.two {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 18px;
  border-radius: 20px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #0f7fc7;
  background: #e8f6fd;
}

.stat-card.green .icon-badge { color: #168263; background: #e5f6ef; }
.stat-card.amber .icon-badge { color: #a36400; background: #fff4dc; }
.stat-card.rose .icon-badge { color: #b43465; background: #fff0f6; }

.stat-card p,
.stat-card strong {
  display: block;
  margin: 0;
}

.stat-card p {
  color: #637f8d;
  font-weight: 750;
}

.stat-card strong {
  color: #0b2e43;
  font-size: 1.7rem;
}

.action-card,
.room-card,
.content-card,
.form-card,
.appointment-card {
  border-radius: 20px;
  padding: 20px;
}

.action-card {
  display: grid;
  gap: 10px;
  min-height: 158px;
  color: #14374b;
  text-align: left;
}

.action-card svg {
  color: #0f7fc7;
}

.action-card strong {
  font-size: 1.1rem;
}

.action-card span,
.room-card p,
.empty-text,
.patient-next p {
  color: #637d8c;
  margin: 0;
}

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

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #0b2e43;
  font-size: 1.25rem;
}

.section-heading span {
  color: #6a8796;
  font-weight: 750;
}

.mini-list,
.timeline,
.schedule-list,
.room-reservations {
  display: grid;
  gap: 10px;
}

.mini-item,
.schedule-row,
.timeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border-radius: 14px;
  background: #f5fafc;
}

.mini-item {
  justify-content: space-between;
}

.mini-item strong,
.mini-item span,
.schedule-row strong,
.schedule-row span,
.timeline-item strong,
.timeline-item p {
  display: block;
}

.mini-item span,
.schedule-row span,
.timeline-item p {
  margin: 0;
  color: #668492;
}

.mini-item time,
.schedule-row time,
.timeline-item > span {
  color: #0f75b5;
  font-weight: 850;
}

.accent-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 127, 199, 0.12), rgba(255, 255, 255, 0.88));
}

.accent-card svg {
  color: #0f7fc7;
  flex: 0 0 auto;
}

.accent-card h2,
.accent-card p {
  margin: 0;
}

.accent-card p {
  color: #577687;
}

.form-card {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  color: #9e2433;
  background: #fff0f1;
  font-weight: 750;
}

.cards-list {
  display: grid;
  gap: 16px;
}

.appointment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) auto;
  gap: 18px;
  align-items: center;
}

.appointment-main span {
  color: #0f77b8;
  font-weight: 850;
}

.appointment-main h2 {
  margin: 4px 0;
  color: #0b2e43;
}

.appointment-main p {
  margin: 0;
  color: #5f7a89;
}

.appointment-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.appointment-meta div {
  padding: 11px;
  border-radius: 13px;
  background: #f4fafc;
}

.appointment-meta dt {
  color: #76909e;
  font-size: 0.8rem;
  font-weight: 800;
}

.appointment-meta dd {
  margin: 0;
  color: #173a4d;
  font-weight: 800;
}

.card-actions {
  display: flex;
  gap: 9px;
}

.room-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.room-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
}

.room-card h2 {
  margin: 0;
  color: #0c3248;
}

.room-reservations span {
  padding: 9px 10px;
  border-radius: 12px;
  color: #0f6fab;
  background: #eaf7fd;
  font-weight: 800;
}

.empty-state {
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.patient-next {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-radius: 16px;
  background: #f5fafc;
}

.patient-next strong {
  color: #0f6fab;
  font-size: 1.25rem;
}

.menu-backdrop {
  display: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  from {
    opacity: 0.8;
    transform: scale(0.55);
  }
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-110%);
    width: min(86vw, 310px);
    transition: transform 0.22s ease;
  }

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

  .mobile-only,
  .menu-backdrop {
    display: inline-grid;
  }

  .sidebar:not(.open) + .menu-backdrop {
    display: none;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 39, 56, 0.36);
    z-index: 15;
  }

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

  .card-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .login-page {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 22px;
  }

  .stats-grid,
  .stats-grid.three,
  .action-grid,
  .action-grid.two,
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .main-area {
    padding: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .role-chip {
    display: none;
  }

  .login-card,
  .form-card,
  .content-card,
  .appointment-card,
  .room-card,
  .stat-card,
  .action-card {
    border-radius: 18px;
  }

  .feature-row {
    display: none;
  }

  .stats-grid,
  .stats-grid.three,
  .action-grid,
  .action-grid.two,
  .room-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .mini-item,
  .schedule-row,
  .timeline-item {
    align-items: flex-start;
  }

  .mini-item {
    flex-direction: column;
  }

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

  .card-actions {
    flex-direction: column;
  }
}

/* Darker professional blue theme override */
body {
  background:
    radial-gradient(circle at top left, rgba(0, 84, 166, 0.18), transparent 30rem),
    linear-gradient(135deg, #f3f8ff 0%, #e5f1fb 46%, #f7fbff 100%);
}

.splash-screen {
  background: linear-gradient(145deg, #052a63, #0054a6 58%, #0a79c4);
}

.primary-button {
  background: linear-gradient(135deg, #052f70, #0054a6);
  box-shadow: 0 16px 34px rgba(5, 47, 112, 0.28);
}

.sidebar {
  background: rgba(250, 253, 255, 0.92);
}

.app-nav .active,
.secondary-button,
.role-chip,
.room-reservations span {
  background: #e4f0ff;
  color: #053f8f !important;
}

.topbar h1,
.login-copy h1,
.section-heading h2,
.appointment-main h2,
.room-card h2,
.stat-card strong {
  color: #06264f;
}

.eyebrow,
.appointment-main span,
.mini-item time,
.schedule-row time,
.timeline-item > span,
.action-card svg,
.accent-card svg,
.icon-badge {
  color: #0054a6;
}

.icon-badge {
  background: #e2f0ff;
}

.login-card,
.form-card,
.content-card,
.appointment-card,
.room-card,
.stat-card,
.action-card {
  border-color: rgba(5, 63, 143, 0.16);
  box-shadow: 0 22px 58px rgba(6, 38, 79, 0.13);
}

.action-card {
  color: #082c59;
}

.stat-card.green .icon-badge {
  color: #006b8f;
  background: #ddf4ff;
}

.stat-card.amber .icon-badge {
  color: #0d4c96;
  background: #e9f3ff;
}

.stat-card.rose .icon-badge {
  color: #114f9d;
  background: #e8f1ff;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none !important;
}

/* Polished login redesign */
.login-page {
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 430px);
  gap: clamp(24px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(6, 48, 107, 0.08), transparent 46%),
    radial-gradient(circle at 18% 18%, rgba(0, 84, 166, 0.18), transparent 22rem);
}

.login-panel {
  align-content: center;
  max-width: 780px;
}

.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 10px 14px 10px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 48, 107, 0.1);
  box-shadow: 0 18px 44px rgba(6, 38, 79, 0.1);
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(5, 42, 99, 0.18));
}

.brand-word {
  color: #06264f;
  font-size: 1.55rem;
  font-weight: 900;
}

.login-showcase {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  min-height: 260px;
  margin: 4px 0 2px;
}

.login-showcase::before {
  content: "";
  position: absolute;
  inset: 28px 0 0;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(5, 42, 99, 0.08), rgba(0, 84, 166, 0.14));
  border: 1px solid rgba(6, 48, 107, 0.1);
}

.showcase-phone {
  position: relative;
  width: 190px;
  min-height: 250px;
  padding: 18px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(5, 42, 99, 0.18);
  border: 1px solid rgba(6, 48, 107, 0.12);
  z-index: 1;
}

.phone-top {
  width: 56px;
  height: 8px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #c7d9e8;
}

.phone-card {
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, #06306b, #0054a6);
  margin-bottom: 16px;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.phone-row span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #e6f0fb;
}

.phone-row strong {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: #d6e6f4;
}

.phone-button {
  height: 42px;
  margin-top: 20px;
  border-radius: 16px;
  background: #052a63;
}

.showcase-panel {
  position: absolute;
  right: clamp(8px, 8vw, 70px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 178px;
  padding: 16px;
  border-radius: 22px;
  color: #06264f;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 48, 107, 0.12);
  box-shadow: 0 22px 56px rgba(5, 42, 99, 0.16);
  backdrop-filter: blur(18px);
}

.showcase-panel span {
  color: #0054a6;
}

.showcase-panel strong {
  font-size: 1rem;
}

.showcase-panel small {
  color: #5d7589;
  font-weight: 700;
}

.login-copy h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.7vw, 4.45rem);
  line-height: 1.04;
}

.login-copy p {
  max-width: 610px;
  font-size: 1.15rem;
}

.login-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
}

.login-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #052a63, #0054a6, #11a8d8);
}

.login-card h2 {
  color: #06264f;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.login-card input {
  min-height: 60px;
  border-radius: 18px;
  border-color: #bdd3e6;
  font-size: 1.05rem;
}

.login-card .primary-button {
  min-height: 58px;
  border-radius: 18px;
  font-size: 1.05rem;
}

.login-help {
  margin: 0;
  padding: 13px 14px;
  border-radius: 16px;
  color: #31546a;
  background: #eef6ff;
  font-weight: 750;
}

.login-help strong {
  color: #052a63;
}

.splash-screen .brand-mark {
  width: min(34vw, 132px);
  height: min(34vw, 132px);
}

@media (max-width: 860px) {
  .login-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 18px;
    gap: 18px;
  }

  .login-panel {
    gap: 16px;
    width: 100%;
  }

  .login-brand {
    margin-top: 4px;
    padding: 8px 12px 8px 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-word {
    font-size: 1.35rem;
  }

  .login-showcase {
    order: 3;
    min-height: 156px;
    margin: 0;
  }

  .login-showcase::before {
    inset: 18px 0 8px;
    border-radius: 26px;
  }

  .showcase-phone {
    width: 128px;
    min-height: 156px;
    padding: 12px;
    border-radius: 24px;
  }

  .phone-top {
    width: 42px;
    height: 6px;
    margin-bottom: 12px;
  }

  .phone-card {
    height: 42px;
    border-radius: 14px;
    margin-bottom: 8px;
  }

  .phone-row {
    margin: 7px 0;
  }

  .phone-row span {
    width: 22px;
    height: 22px;
    border-radius: 8px;
  }

  .phone-row strong {
    height: 8px;
  }

  .phone-button {
    height: 28px;
    margin-top: 10px;
    border-radius: 11px;
  }

  .showcase-panel {
    right: 8px;
    bottom: 16px;
    min-width: 132px;
    padding: 11px;
    border-radius: 16px;
  }

  .showcase-panel strong {
    font-size: 0.86rem;
  }

  .showcase-panel small {
    font-size: 0.74rem;
  }

  .login-copy {
    order: 2;
  }

  .login-copy h1 {
    margin: 6px 0 8px;
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.05;
  }

  .login-copy p {
    font-size: 1rem;
  }

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

  .login-card h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 420px) {
  .login-page {
    padding: 14px;
  }

  .login-copy h1 {
    font-size: 2.18rem;
  }

  .login-showcase {
    min-height: 138px;
  }

  .showcase-panel {
    display: none;
  }
}

@media (max-width: 860px) {
  .login-showcase {
    display: none;
  }

  .login-page {
    justify-content: center;
    min-height: 100svh;
  }

  .login-panel {
    text-align: center;
    align-items: center;
    gap: 10px;
  }

  .login-brand {
    margin-inline: auto;
  }

  .login-copy h1 {
    margin-top: 14px;
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  .login-copy p {
    max-width: 330px;
    margin-inline: auto;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .feature-row {
    display: none;
  }

  .login-card {
    margin-top: 4px;
    box-shadow: 0 18px 44px rgba(6, 38, 79, 0.12);
  }
}
