:root {
  color-scheme: light;
  --bg: #f3f8f7;
  --panel: #ffffff;
  --soft-panel: #f9fffc;
  --text: #17322f;
  --muted: #647773;
  --border: #d5e6e1;
  --primary: #0f8f78;
  --primary-dark: #08715f;
  --secondary: #2d6cdf;
  --mint: #dff6ed;
  --mint-strong: #b7ead8;
  --rose: #fcebea;
  --success: #0f8a5f;
  --danger: #c83232;
  --warning: #b7791f;
  --shadow: 0 16px 40px rgba(26, 73, 64, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(223, 246, 237, 0.82), rgba(243, 248, 247, 0.86) 34%, var(--bg) 100%);
  color: var(--text);
  font-family: "Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, ui-sans-serif, system-ui, sans-serif;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.brand::before,
.auth-brand-mark::before {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #45b68f);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15, 143, 120, 0.25);
  content: "+";
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 650;
}

.nav-links a {
  color: #2f4b47;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.account-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.language-only {
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  background: #eef8f5;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.language-link {
  min-width: 74px;
  padding: 5px 10px;
  color: #41615c;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.language-link:hover,
.language-link.active {
  color: #ffffff;
  background: var(--primary);
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 56px;
}

.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  font-size: 1.85rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.1rem;
}

.page-heading p,
.empty-state,
.muted {
  color: var(--muted);
}

.panel,
.metric-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel {
  padding: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 112px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, var(--soft-panel));
}

.metric-card span {
  color: var(--muted);
  font-weight: 650;
}

.metric-card strong {
  font-size: 1.75rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.status-list,
.compact-list {
  display: grid;
  gap: 10px;
}

.status-row,
.compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  color: var(--text);
  background: #f8fcfb;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 10px;
  color: #12624f;
  background: var(--mint);
  border: 1px solid var(--mint-strong);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.badge-large {
  min-height: 34px;
  padding-inline: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(15, 143, 120, 0.18);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary,
.button-small {
  color: var(--text);
  background: #ffffff;
  border-color: var(--border);
}

.button-secondary:hover,
.button-small:hover {
  background: #f4fbf8;
  border-color: var(--mint-strong);
}

.button-ghost {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.button-small {
  min-height: 32px;
  padding: 5px 10px;
  font-size: 0.88rem;
}

.full-width {
  width: 100%;
}

.auth-layout {
  display: grid;
  min-height: calc(100vh - 180px);
  place-items: center;
}

.auth-panel,
.narrow-panel {
  width: min(440px, 100%);
}

.auth-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.auth-panel h1,
.auth-panel p {
  margin: 0;
}

.auth-panel p {
  color: var(--muted);
  font-weight: 650;
}

.auth-brand-mark {
  height: 38px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 143, 120, 0.14);
  outline: none;
}

.stack-form {
  display: grid;
  gap: 16px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(220px, 1fr) auto auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.table-panel {
  padding: 0;
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}

th {
  color: #475467;
  background: #f4fbf8;
  font-size: 0.84rem;
  text-transform: uppercase;
}

td span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: 0;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(138px, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.detail-list dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  margin: 0;
}

.detail-list dt {
  color: var(--muted);
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
}

.soft-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 4px 10px;
  color: var(--primary-dark);
  background: var(--mint);
  border: 1px solid var(--mint-strong);
  border-radius: 999px;
  font-weight: 850;
}

.product-list {
  display: grid;
  gap: 12px;
}

.product-row {
  display: grid;
  grid-template-columns: 88px minmax(180px, 1fr) minmax(260px, 0.85fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fcfb);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.product-media {
  width: 88px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eef8f5;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
}

.product-main h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  display: inline-flex;
  padding: 4px 8px;
  color: #41615c;
  background: #eef8f5;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-numbers div {
  min-height: 64px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.product-numbers span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.product-numbers strong {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
}

.alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-weight: 650;
}

.alert-success {
  color: var(--success);
  border-color: #b7e4d1;
  background: #ecfdf5;
}

html[dir="rtl"] .account-box,
html[dir="rtl"] .page-heading,
html[dir="rtl"] .status-row,
html[dir="rtl"] .compact-row {
  direction: rtl;
}

html[dir="rtl"] .account-box,
html[dir="rtl"] .language-only {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] th,
html[dir="rtl"] td {
  text-align: right;
}

html[dir="rtl"] .product-row,
html[dir="rtl"] .section-heading {
  direction: rtl;
}

html[dir="rtl"] .brand::before {
  margin-left: 0;
}

.alert-danger {
  color: var(--danger);
  border-color: #f2c4c4;
  background: #fff1f1;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
  min-height: auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-heading h1 {
  font-size: 2.25rem;
  letter-spacing: 0;
}

.dashboard-filters {
  display: grid;
  grid-template-columns: auto repeat(3, minmax(160px, 1fr)) auto auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fcfb);
}

.dashboard-filters > strong {
  align-self: center;
  color: var(--primary-dark);
  font-size: 1rem;
}

.metric-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: transparent;
}

.metric-primary span,
.metric-primary strong {
  color: #ffffff;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  margin-bottom: 18px;
}

.analytics-grid-products {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.rank-list,
.product-stat-list {
  display: grid;
  gap: 10px;
}

.rank-row,
.product-stat-row {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8fcfb;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.rank-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.rank-row span,
.product-stat-main span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.rank-row b,
.product-stat-row b {
  color: var(--primary-dark);
  white-space: nowrap;
}

.product-stat-row {
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.product-stat-media {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: var(--primary);
  background: #eef8f5;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 900;
}

.product-stat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.customer-panel {
  display: grid;
  gap: 14px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-strip span {
  display: inline-flex;
  gap: 6px;
  padding: 7px 10px;
  color: #315c55;
  background: #eef8f5;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.address-grid article {
  min-height: 132px;
  padding: 12px;
  background: #f8fcfb;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.address-grid h3 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 0.94rem;
}

.address-grid span {
  display: block;
  color: #344b47;
  font-size: 0.9rem;
}

.totals-panel {
  margin-bottom: 18px;
}

.totals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.totals-grid div {
  min-height: 82px;
  padding: 12px;
  background: #f8fcfb;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.totals-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.totals-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.totals-grid .total-ttc {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-color: transparent;
}

.totals-grid .total-ttc span,
.totals-grid .total-ttc strong {
  color: #ffffff;
}

html[dir="rtl"] .dashboard-filters,
html[dir="rtl"] .analytics-grid,
html[dir="rtl"] .rank-row,
html[dir="rtl"] .product-stat-row,
html[dir="rtl"] .detail-grid,
html[dir="rtl"] .address-grid,
html[dir="rtl"] .totals-grid {
  direction: rtl;
}

@media (max-width: 860px) {
  .topbar,
  .page-heading,
  .account-box {
    align-items: stretch;
    flex-direction: column;
  }

  .account-box {
    margin-left: 0;
  }

  .metric-grid,
  .two-column,
  .filters,
  .dashboard-filters,
  .analytics-grid,
  .analytics-grid-products,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid-wide,
  .totals-grid,
  .address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-media {
    width: 72px;
  }

  .product-numbers {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inline-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .metric-grid-wide,
  .totals-grid,
  .address-grid,
  .product-stat-row {
    grid-template-columns: 1fr;
  }

  .product-stat-media {
    width: 76px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-media {
    width: 100%;
    max-width: 160px;
  }

  .product-numbers {
    grid-template-columns: 1fr;
  }
}

/* ─── Modern Login ─────────────────────────────────────────── */

.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* break out of .page-shell constraints to go full-bleed */
  width: 100vw;
  min-height: calc(100vh - 64px); /* subtract topbar height */
  margin-top: -28px;
  margin-bottom: -56px;
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

/* Hero / left panel */
.login-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px;
  background: linear-gradient(145deg, #074d3f 0%, #0a6b57 40%, #0f8f78 80%, #1ab38f 100%);
}

.login-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 380px;
}

.login-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(26,179,143,0.22) 0%, transparent 50%);
  pointer-events: none;
}

.login-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.login-hero-icon {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.login-hero-headline {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.login-hero-sub {
  margin: 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.login-feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.login-feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

/* Form / right panel */
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: #f5f9f8;
}

.login-card {
  width: min(420px, 100%);
  padding: 40px;
  background: #ffffff;
  border: 1px solid #dae8e4;
  border-radius: 20px;
  box-shadow:
    0 4px 6px -1px rgba(15,143,120,0.06),
    0 20px 50px -8px rgba(15,143,120,0.12);
}

.login-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.login-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0f8f78, #1ab38f);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15,143,120,0.28);
}

.login-card-logo span {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.login-card-title {
  margin: 0 0 3px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0f2420;
}

.login-card-sub {
  margin: 0;
  color: #7a9590;
  font-size: 0.88rem;
  font-weight: 500;
}

.login-fields {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.login-field-group {
  display: grid;
  gap: 7px;
}

.login-label {
  color: #2e4a45;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.login-input-wrap {
  position: relative;
}

.login-input-icon {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: #9eb8b3;
  pointer-events: none;
  transition: color 0.18s ease;
}

.login-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px 10px 40px;
  color: #17322f;
  background: #f7fcfb;
  border: 1.5px solid #cde3dc;
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.login-input::placeholder {
  color: #b0c9c4;
}

.login-input:hover {
  border-color: #9ecfc5;
  background: #ffffff;
}

.login-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(15,143,120,0.13);
  outline: none;
}

.login-input-wrap:focus-within .login-input-icon {
  color: var(--primary);
}

.login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f8f78 0%, #1aaa90 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 22px rgba(15,143,120,0.28), 0 1px 3px rgba(15,143,120,0.12);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.login-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.login-submit:hover {
  background: linear-gradient(135deg, #0a7362 0%, #0f8f78 100%);
  box-shadow: 0 10px 28px rgba(15,143,120,0.36), 0 2px 6px rgba(15,143,120,0.14);
  transform: translateY(-1px);
}

.login-submit:hover svg {
  transform: translateX(3px);
}

.login-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(15,143,120,0.22);
}

/* Responsive */
@media (max-width: 860px) {
  .login-split {
    grid-template-columns: 1fr;
  }

  .login-hero {
    padding: 40px 32px;
    min-height: auto;
  }

  .login-hero-headline {
    font-size: 1.5rem;
  }

  .login-hero-sub,
  .login-feature-list {
    display: none;
  }

  .login-form-side {
    padding: 32px 20px;
  }

  .login-card {
    padding: 30px 24px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .login-hero {
    padding: 28px 20px;
  }

  .login-hero-logo {
    margin-bottom: 16px;
  }
}
