:root {
  --ink: #102338;
  --ink-2: #1f3348;
  --muted: #66788a;
  --line: #e2e8ef;
  --soft: #f5f7fa;
  --white: #ffffff;
  --accent: #e7b65c;
  --accent-strong: #d89d37;
  --accent-soft: #fff7e8;
  --green: #237c68;
  --shadow: 0 25px 70px rgba(15, 32, 52, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button, select {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(218, 226, 234, .65);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 22px/1 "Manrope", sans-serif;
  letter-spacing: -.6px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--accent-soft);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: #536579;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--ink);
}

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

.btn {
  border: 0;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 11px 17px;
  font-size: 14px;
}

.btn-lg {
  min-height: 54px;
  padding: 0 22px;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: #241a0b;
  box-shadow: 0 13px 30px rgba(220, 163, 60, .22);
}

.btn-primary:hover {
  background: #efc46f;
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 11px 8px;
}

.btn-light {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-white {
  background: white;
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    linear-gradient(115deg, #fbfcfd 0%, #fff 42%, #f8f5ee 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(15, 36, 56, .06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, transparent, black 78%, black);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #87611d;
  background: var(--accent-soft);
  border: 1px solid #f1ddb5;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(216, 157, 55, .12);
}

.hero h1 {
  margin: 24px 0 24px;
  max-width: 700px;
  font: 800 clamp(48px, 6vw, 76px)/1.02 "Manrope", sans-serif;
  letter-spacing: -3.5px;
}

.hero h1 span {
  display: block;
  color: #b07920;
}

.hero-lead {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-reassurance {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.hero-reassurance p {
  margin: 0;
}

.hero-reassurance strong {
  color: var(--ink);
}

.mini-avatars {
  display: flex;
  padding-left: 6px;
}

.mini-avatars span {
  width: 34px;
  height: 34px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfe8ef;
  color: var(--ink);
  border: 3px solid white;
  font-size: 9px;
  font-weight: 800;
}

.mini-avatars span:nth-child(2) { background: #f1dfbc; }
.mini-avatars span:nth-child(3) { background: #d9eadf; }
.mini-avatars span:nth-child(4) { background: var(--ink); color: white; }

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 330px;
  min-height: 628px;
  padding: 10px;
  background: #101820;
  border: 1px solid #28333d;
  border-radius: 42px;
  box-shadow:
    0 40px 80px rgba(16, 35, 56, .22),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.phone-top {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 17px;
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
  color: white;
  font-size: 10px;
}

.phone-island {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5px;
  width: 90px;
  height: 20px;
  background: #050708;
  border-radius: 20px;
}

.app-screen {
  min-height: 608px;
  padding: 41px 20px 22px;
  border-radius: 33px;
  background: #f8fafb;
  overflow: hidden;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.app-topbar strong {
  display: block;
  font: 800 21px/1.2 "Manrope";
}

.app-kicker {
  color: #8a97a5;
  font-size: 11px;
  margin-bottom: 3px;
}

.avatar {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.network-card,
.qr-card,
.activity-card {
  border: 1px solid #e4eaf0;
  background: white;
  border-radius: 18px;
}

.network-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 17px;
}

.network-label {
  display: block;
  color: #80909e;
  font-size: 10px;
}

.network-value {
  display: block;
  margin-top: 4px;
  font: 800 31px/1 "Manrope";
}

.trend {
  color: var(--green);
  background: #eaf6f2;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.qr-card {
  margin-top: 12px;
  text-align: center;
  padding: 15px;
}

.qr-label {
  display: block;
  text-align: left;
  color: #7c8c9b;
  font-size: 10px;
}

.fake-qr {
  position: relative;
  width: 122px;
  height: 122px;
  margin: 7px auto 4px;
  background:
    repeating-linear-gradient(90deg, #13283a 0 6px, transparent 6px 11px),
    repeating-linear-gradient(0deg, #13283a 0 5px, transparent 5px 12px);
  border: 12px solid white;
  outline: 1px solid #e6e9ed;
}

.fake-qr::before,
.fake-qr::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 7px solid #13283a;
  background: white;
}

.fake-qr::before { left: -4px; top: -4px; }
.fake-qr::after { right: -4px; top: -4px; }

.fake-qr span {
  position: absolute;
  background: white;
}

.qr-a { width: 25px; height: 25px; bottom: 1px; left: 1px; border: 7px solid #13283a; }
.qr-b { width: 14px; height: 8px; left: 45px; top: 38px; }
.qr-c { width: 7px; height: 17px; right: 24px; top: 43px; }
.qr-d { width: 15px; height: 7px; right: 17px; bottom: 21px; }

.qr-card strong {
  display: block;
  margin-top: 3px;
  font: 800 17px "Manrope";
  letter-spacing: 1px;
}

.qr-card small {
  display: block;
  color: #8996a2;
  margin-top: 1px;
  font-size: 9px;
}

.qr-card button {
  width: 100%;
  margin-top: 10px;
  min-height: 34px;
  border: 0;
  border-radius: 9px;
  color: #231a0c;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.activity-card {
  margin-top: 12px;
  padding: 14px;
}

.activity-head {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.activity-head span {
  color: #9b792c;
}

.activity-row {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.activity-avatar {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #edf2f5;
  font-size: 8px;
  font-weight: 800;
}

.activity-row strong {
  display: block;
  font-size: 9px;
}

.activity-row small {
  color: #94a0ab;
  font-size: 8px;
}

.ok {
  color: var(--green);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 225px;
  padding: 12px 14px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(220,227,234,.9);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(20, 35, 50, .14);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong { font-size: 11px; }
.floating-card small { color: #8b98a5; font-size: 9px; }

.floating-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #a17122;
  font-weight: 800;
}

.floating-one {
  left: -12px;
  top: 126px;
}

.floating-two {
  right: -28px;
  bottom: 115px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 130px;
  background: rgba(234, 191, 111, .13);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -160px;
  bottom: -70px;
  background: rgba(73, 118, 146, .07);
}

.logos-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.strip-content {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #718293;
  font-size: 13px;
}

.pill-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-list span {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #e5eaf0;
  color: #42566b;
  background: #fafbfc;
  font-weight: 600;
}

.section {
  padding: 98px 0;
}

.section.soft {
  background: #f6f8fa;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.final-cta h2 {
  margin: 15px 0 14px;
  font: 800 clamp(34px, 4vw, 50px)/1.12 "Manrope", sans-serif;
  letter-spacing: -2px;
}

.section-heading p,
.benefits-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.step-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(19, 40, 61, .09);
  border-color: #ebd3a3;
}

.step-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: #cbd4dc;
  font: 800 29px "Manrope";
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--accent-soft);
  color: #9e7021;
  font-size: 21px;
  font-weight: 800;
}

.step-card h3,
.trust-grid h3 {
  margin: 23px 0 10px;
  font: 800 21px "Manrope";
}

.step-card p,
.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
}

.benefit-list > div > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e7f3ef;
  color: var(--green);
  font-weight: 900;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
}

.benefit-list strong {
  color: var(--ink);
}

.metric-board {
  padding: 30px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.metric-top,
.metric-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-top span:first-child {
  color: #95a6b6;
  display: block;
  font-size: 11px;
}

.metric-top strong {
  display: block;
  font-size: 14px;
}

.live-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(62, 165, 137, .15);
  color: #7ad2b9;
  font-size: 10px;
}

.metric-main {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin-top: 38px;
}

.metric-main span {
  color: #aab6c1;
  font-size: 12px;
}

.metric-main strong {
  font: 800 54px/1 "Manrope";
}

.metric-main em {
  color: #7ad2b9;
  font-style: normal;
  font-size: 11px;
}

.bars {
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 28px 0;
  padding-top: 20px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.bars i {
  display: block;
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(to top, #b77f28, #efc46e);
}

.metric-footer {
  gap: 16px;
}

.metric-footer div {
  flex: 1;
}

.metric-footer strong,
.metric-footer span {
  display: block;
}

.metric-footer strong {
  font: 800 18px "Manrope";
}

.metric-footer span {
  margin-top: 3px;
  color: #93a4b3;
  font-size: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-grid article {
  padding: 26px;
  border-radius: 20px;
  background: #fafbfc;
  border: 1px solid var(--line);
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 20px;
}

.final-cta {
  padding: 0 0 80px;
}

.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 52px 58px;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(236, 188, 96, .24), transparent 28%),
    var(--ink);
}

.final-box > div {
  max-width: 720px;
}

.final-box h2 {
  margin-bottom: 10px;
}

.final-box p {
  color: #b8c4ce;
  margin: 0;
}

.light-tag {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #efd08c;
}

footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 25, 39, .56);
  backdrop-filter: blur(7px);
}

.modal-backdrop[hidden] {
  display: none;
}

.signup-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 25px;
  background: white;
  box-shadow: 0 35px 90px rgba(0,0,0,.25);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 17px;
  width: 36px;
  height: 36px;
  border: 0;
  background: #f3f5f7;
  border-radius: 11px;
  color: #667788;
  font-size: 24px;
  cursor: pointer;
}

.signup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 42px;
  margin-bottom: 30px;
}

.modal-logo {
  font: 800 18px "Manrope";
}

.signup-step {
  color: #98a3ad;
  font-size: 11px;
}

.signup-modal h2 {
  margin: 14px 0 8px;
  font: 800 31px/1.15 "Manrope";
  letter-spacing: -1px;
}

.modal-intro {
  color: var(--muted);
  margin: 0 0 24px;
}

.signup-modal label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.select-wrap select {
  width: 100%;
  min-height: 52px;
  padding: 0 44px 0 15px;
  border: 1px solid #dce3e9;
  border-radius: 13px;
  background: white;
  color: var(--ink);
  outline: none;
}

.select-wrap select:focus {
  border-color: #cda24e;
  box-shadow: 0 0 0 4px rgba(231,182,92,.13);
}

.agency-info {
  margin: 12px 0 15px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #f7f9fa;
  border: 1px solid #e6ebef;
}

.agency-info strong,
.agency-info span {
  display: block;
}

.agency-info span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.form-error {
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: #9f2f2f;
  background: #fff1f1;
  font-size: 12px;
}

#continueProfessional {
  margin-top: 16px;
}

.modal-footnote,
.legal-copy {
  margin: 18px 0 0;
  text-align: center;
  color: #8c98a3;
  font-size: 11px;
}

.modal-footnote a {
  color: #8d6620;
  font-weight: 700;
}

.back-link {
  padding: 0;
  margin: 0 0 18px;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}

.auth-provider {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 800;
}

.google {
  color: #26384a;
  background: white;
  border: 1px solid #dce3e9;
}

.google-g {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  background: #f4f7fb;
  font-weight: 900;
}

.email-provider {
  border: 0;
  color: white;
  background: var(--ink);
}

.separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 0;
  color: #9aa5ae;
  font-size: 11px;
}

.separator::before,
.separator::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e5eaee;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-reassurance {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .step-card.featured {
    transform: none;
  }

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

  .footer-grid,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header .nav {
    min-height: 66px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn-dark {
    padding: 9px 12px;
    font-size: 12px;
  }

  .brand {
    font-size: 18px;
  }

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

  .hero {
    padding: 52px 0 64px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -2.7px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-shell {
    width: 295px;
    transform: scale(.92);
  }

  .floating-card {
    width: 190px;
  }

  .floating-one { left: -10px; }
  .floating-two { right: -8px; }

  .strip-content {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .section {
    padding: 70px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 35px;
  }

  .benefits-grid {
    gap: 45px;
  }

  .metric-board {
    padding: 22px;
  }

  .final-box {
    padding: 34px 28px;
  }

  .final-box .btn {
    width: 100%;
  }

  .signup-modal {
    padding: 24px 20px;
  }
}

.google-button-host{min-height:44px;display:flex;justify-content:center}
.signup-form{display:grid;gap:15px;margin-top:18px;padding-top:18px;border-top:1px solid var(--line)}
.signup-form[hidden],.auth-provider[hidden],.creating-step[hidden]{display:none}
.field-grid.two{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.signup-form input{width:100%;min-height:50px;padding:0 14px;border:1px solid #dce3e9;border-radius:12px;color:var(--ink);background:#fff;outline:none}
.signup-form input:focus{border-color:#cda24e;box-shadow:0 0 0 4px rgba(231,182,92,.13)}
.field-help{display:block;margin-top:5px;color:#8c98a3;font-size:10px}
.creating-step{text-align:center;padding:50px 15px 40px}
.creating-step h2{margin-top:22px}.creating-step p{color:var(--muted)}
.loader{width:50px;height:50px;margin:0 auto;border-radius:50%;border:5px solid #edf0f3;border-top-color:var(--accent-strong);animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
@media(max-width:520px){.field-grid.two{grid-template-columns:1fr}}


/* ==========================================================
   IMMOLIB - Connexion compte existant
   ========================================================== */

.login-modal {
  width: min(500px, 100%);
}

.login-form {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.login-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #87939f;
  font-size: 11px;
}

.login-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #956c22;
  cursor: pointer;
  font-weight: 800;
}
