/* ============================================================
   TRIPLE O — LOGIN.CSS
   Aesthetic: Premium & Refined — Luxury Retail
   Consistent with index.css design language
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Figtree:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --font-display : 'Cormorant Garamond', Georgia, serif;
  --font-body    : 'Figtree', system-ui, sans-serif;
  --font-mono    : 'JetBrains Mono', monospace;

  --g-900: #052e16;
  --g-800: #14532d;
  --g-700: #15803d;
  --g-600: #16a34a;
  --g-500: #22c55e;
  --g-400: #4ade80;
  --g-200: #bbf7d0;
  --g-100: #dcfce7;
  --g-50 : #f0fdf4;

  --ink  : #0c1a10;
  --ink-2: #1a3020;
  --ink-3: #2d4a38;
  --warm : #f8fdf9;

  --glow-md: 0 8px 32px rgba(22,163,74,0.2);
  --glow-lg: 0 16px 56px rgba(22,163,74,0.25);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--warm);
}

/* ══════════════════════════════════════════════════════════
   LAYOUT — 50/50 split
══════════════════════════════════════════════════════════ */
.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ══════════════════════════════════════════════════════════
   LEFT PANEL — rich green
══════════════════════════════════════════════════════════ */
.login-left {
  position: relative;
  background: var(--g-800);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Layered background atmosphere */
.left-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.left-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.left-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.25) 0%, transparent 65%);
  top: -120px; right: -120px;
}
.left-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5,46,22,0.8) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.left-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 80%);
}

/* All left panel content sits above bg layers */
.login-left > *:not(.left-bg) { position: relative; z-index: 1; }

/* Brand */
.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: auto;
}
.login-brand-icon {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(34,197,94,0.4));
}
.login-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}
.login-brand-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(187,247,208,0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-top: 3px;
}

/* Left body copy */
.login-left-body { padding: 56px 0 48px; flex: 1; }

.left-eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--g-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.left-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--g-400);
  border-radius: 2px;
  flex-shrink: 0;
}

.left-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.left-headline em {
  font-style: italic;
  color: var(--g-400);
}

.left-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(187,247,208,0.7);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 380px;
  font-weight: 400;
}

/* Feature list */
.login-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.login-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.2s ease;
}
.login-feature:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.login-feature:hover { padding-left: 6px; }

.lf-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.lf-title {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.lf-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(187,247,208,0.55);
  line-height: 1.5;
}

/* Left footer */
.login-left-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(187,247,208,0.45);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.left-footer-divider { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════
   RIGHT PANEL — clean white form
══════════════════════════════════════════════════════════ */
.login-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: var(--warm);
  position: relative;
}

/* Very subtle green tint top-right corner */
.login-right::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle at top right, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Mobile brand */
.login-brand-mobile {
  display: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 32px;
  font-size: 22px;
}

/* ── Login card ───────────────────────────────────────── */
.login-card {
  background: #fff;
  border: 1px solid var(--g-100);
  border-radius: 24px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 0 0 1px rgba(22,163,74,0.07),
    0 24px 64px rgba(0,0,0,0.09),
    0 4px 16px rgba(22,163,74,0.06);
  position: relative;
  z-index: 1;
}

/* Subtle top-edge green line */
.login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g-500), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.5;
}

/* Card header */
.login-card-header {
  text-align: center;
  margin-bottom: 32px;
}
.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(22,163,74,0.2));
}
.login-card-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.login-card-header p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* Error box */
.login-error-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #991b1b;
  animation: shakeX 0.4s ease;
}
.login-error-icon { font-size: 15px; flex-shrink: 0; }

@keyframes shakeX {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-6px); }
  40%     { transform: translateX(6px); }
  60%     { transform: translateX(-4px); }
  80%     { transform: translateX(4px); }
}

/* Form */
.login-form { display: flex; flex-direction: column; gap: 0; }
.login-form .form-group { margin-bottom: 18px; }
.login-form .form-group:last-child { margin-bottom: 24px; }

/* Labels */
.login-form .form-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 7px;
  display: block;
}
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.label-row .form-label { margin-bottom: 0; }

/* Inputs with icon */
.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 1;
}

.input-with-icon {
  padding-left: 38px !important;
}

/* Override form-control for login */
.login-card .form-control {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  background: var(--g-50);
  border: 1.5px solid var(--g-100);
  border-radius: 11px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}
.login-card .form-control::placeholder {
  color: rgba(45,74,56,0.35);
  font-weight: 400;
}
.login-card .form-control:hover {
  border-color: var(--g-200);
  background: #fff;
}
.login-card .form-control:focus {
  border-color: var(--g-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}
.login-card .form-control.error {
  border-color: #f87171;
  background: #fff5f5;
  box-shadow: 0 0 0 4px rgba(248,113,113,0.12);
}

/* Password field */
.password-wrap {
  position: relative;
}
.password-wrap .form-control {
  padding-right: 46px;
}
.password-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.18s;
  padding: 4px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.password-toggle:hover { opacity: 0.85; }

/* Primary CTA button */
.btn-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--g-700);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3), 0 1px 4px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
/* Shimmer on hover */
.btn-login::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-login:hover {
  background: var(--g-800);
  box-shadow: 0 8px 28px rgba(22,163,74,0.38), 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.btn-login:hover::after { transform: translateX(100%); }
.btn-login:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(22,163,74,0.25); }
.btn-login:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  font-size: 17px;
  transition: transform 0.2s ease;
  line-height: 1;
}
.btn-login:hover .btn-arrow { transform: translateX(4px); }

/* Spinner inside button */
.btn-login .spinner {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #fff;
  width: 16px; height: 16px;
}

/* Divider */
.login-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-3);
  opacity: 0.5;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--g-200), transparent);
}

/* Secondary button */
.btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  border: 1.5px solid var(--g-200);
  border-radius: 12px;
  color: var(--g-700);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.btn-register:hover {
  background: var(--g-50);
  border-color: var(--g-400);
  color: var(--g-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.12);
}

/* Back link */
.login-back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-3);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.login-back-link:hover { opacity: 1; color: var(--g-700); }

/* ══════════════════════════════════════════════════════════
   REGISTER — LEFT PANEL EXTRAS
══════════════════════════════════════════════════════════ */

/* Role cards on left panel */
.role-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.role-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: background 0.18s, border-color 0.18s;
  cursor: default;
}
.role-card-left:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(74,222,128,0.35);
}
.rcl-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.rcl-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}
.rcl-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(187,247,208,0.5);
  margin-top: 2px;
}

/* Left notice box */
.left-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-top: 8px;
}
.left-notice-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.left-notice p {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(187,247,208,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   REGISTER — FORM EXTRAS
══════════════════════════════════════════════════════════ */

/* Success banner */
.login-success-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--g-50);
  border: 1px solid var(--g-200);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--g-800);
  animation: fadeUp 0.3s ease;
}
.login-success-icon { font-size: 15px; flex-shrink: 0; color: var(--g-600); }

/* Two-column form row */
.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Password strength meter */
.pwd-strength {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}
.pwd-strength-bar {
  flex: 1;
  height: 4px;
  background: var(--g-100);
  border-radius: 4px;
  overflow: hidden;
}
.pwd-strength-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
}
.pwd-strength-fill.weak   { background: var(--danger); width: 33%; }
.pwd-strength-fill.fair   { background: var(--warning); width: 66%; }
.pwd-strength-fill.strong { background: var(--g-500); width: 100%; }
.pwd-strength-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.pwd-strength-label.weak   { color: var(--danger); }
.pwd-strength-label.fair   { color: var(--warning); }
.pwd-strength-label.strong { color: var(--g-600); }

/* Mobile footer — hidden on desktop */
.mobile-footer { display: none; }
/* Mobile feature strip — hidden on desktop */
.mobile-feature-strip { display: none; }
/* Mobile spacer — hidden on desktop */
.mobile-spacer { display: none; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

/* ── Tablet landscape (≤ 1100px): narrow left panel ───────── */
@media (max-width: 1100px) {
  .login-layout { grid-template-columns: 42fr 58fr; }
  .login-left { padding: 36px 36px; }
  .left-headline { font-size: 2.2rem; }
  .login-left-body { padding: 40px 0 36px; }
}

/* ── Tablet portrait (≤ 900px): hide left, show mobile nav ── */
@media (max-width: 900px) {
  /* Stack to single column, natural height — let content scroll */
  .login-layout {
    grid-template-columns: 1fr;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Hide decorative left panel entirely */
  .login-left { display: none; }

  /* Right panel = full page, natural flex column */
  .login-right {
    flex: 1;
    min-height: unset;
    padding: 0;
    background: var(--warm);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .login-right::before { display: none; }

  /* Sticky green brand header */
  .login-brand-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--g-800);
    padding: 16px 24px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
  }
  .login-brand-mobile span:first-child {
    font-size: 24px;
    filter: drop-shadow(0 2px 6px rgba(34,197,94,0.4));
  }
  .login-brand-mobile .login-brand-name {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.01em;
  }

  /* Login card — natural height, NO flex-grow */
  .login-right > .login-card {
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--g-100);
    box-shadow: none;
    padding: 36px 32px 44px;
  }
  .login-right > .login-card::before { display: none; }

  /* Spacer — grows to fill remaining space, pushing strip+footer down */
  .login-right > .login-card::after {
    content: none;
  }
  .mobile-spacer {
    display: block;
    flex: 1;
    min-height: 0;
  }

  /* Feature strip — sits just above footer */
  .mobile-feature-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex-shrink: 0;
    border-top: 1px solid var(--g-200);
    background: var(--g-50);
  }
  .mfs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--g-700);
    border-bottom: 1px solid var(--g-100);
    border-right: 1px solid var(--g-100);
  }
  .mfs-item:nth-child(even)       { border-right: none; }
  .mfs-item:nth-last-child(-n+2)  { border-bottom: none; }
  .mfs-item span { font-size: 17px; flex-shrink: 0; }

  /* Footer copyright bar */
  .mobile-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--g-900);
    font-family: var(--font-body);
    font-size: 11.5px;
    color: rgba(187,247,208,0.45);
    flex-shrink: 0;
  }
  .mobile-footer .status-dot { flex-shrink: 0; }
  .mobile-footer-sep { opacity: 0.4; }
}

/* ── Mobile (≤ 640px): tighten spacing ────────────────────── */
@media (max-width: 640px) {
  .login-brand-mobile { padding: 14px 18px; }

  .login-right > .login-card {
    padding: 28px 18px 40px;
    max-width: 100%;
  }

  .login-card-header { margin-bottom: 22px; }
  .card-icon { font-size: 26px; margin-bottom: 10px; }
  .login-card-header h3 { font-size: 21px; }
  .login-card-header p { font-size: 13px; }

  /* font-size: 16px prevents iOS zoom on focus */
  .login-card .form-control {
    padding: 13px 14px 13px 40px;
    font-size: 16px;
    border-radius: 10px;
  }
  .input-with-icon { padding-left: 40px !important; }
  .input-icon { font-size: 14px; left: 13px; }

  .login-form .form-label { font-size: 11px; }
  .login-form .form-group { margin-bottom: 14px; }
  .login-form .form-group:last-child { margin-bottom: 18px; }

  .btn-login { padding: 15px 18px; font-size: 15px; min-height: 52px; border-radius: 11px; }
  .btn-register { padding: 13px 18px; font-size: 14px; min-height: 50px; border-radius: 10px; }
  .login-divider { margin: 16px 0; }
  .login-back-link { margin-top: 16px; font-size: 13px; }

  /* Collapse two-column rows on small screens */
  .form-row-half { grid-template-columns: 1fr; gap: 0; }

  /* Feature strip: full width single row items on small screens */
  .mfs-item { padding: 13px 16px; font-size: 12px; }
  .mobile-footer { padding: 12px 16px; font-size: 11px; }
}

/* ── Small mobile (≤ 380px): very tight ───────────────────── */
@media (max-width: 380px) {
  .login-brand-mobile { padding: 12px 14px; }
  .login-brand-mobile .login-brand-name { font-size: 17px !important; }

  .login-right > .login-card { padding: 22px 14px 36px; }
  .login-card-header h3 { font-size: 19px; }

  .btn-login { font-size: 14px; }
  .btn-register { font-size: 13px; }

  .login-error-box { font-size: 12px; padding: 10px 12px; }

  /* Collapse feature strip to single column */
  .mobile-feature-strip { grid-template-columns: 1fr; }
  .mfs-item {
    border-right: none !important;
    padding: 12px 14px;
  }
  .mfs-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--g-100); }
  .mfs-item:last-child { border-bottom: none; }
}