@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");
:root {
  --black: #0b0b0c;
  --ink: #151518;
  --muted: #73737a;
  --paper: #f6f5f2;
  --white: #fff;
  --line: #deddd8;
  --green: #77bd32;
  --green-dark: #4d8e16;
  --red: #df3b2f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.topbar-inner {
  max-width: 1240px;
  margin: auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  text-decoration: none;
  line-height: 0.8;
  color: #000;
}
.brand strong {
  font-size: 27px;
  letter-spacing: 0.06em;
  font-weight: 800;
  border-bottom: 3px solid #000;
}
.brand em {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-style: italic;
  display: block;
  margin: 5px 0 0 25px;
}
.top-note {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #666;
}
.progress-wrap {
  max-width: 1240px;
  margin: auto;
  padding: 0 28px 15px;
}
.progress {
  height: 3px;
  background: #ecebe7;
  position: relative;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 25%;
  background: var(--green);
  transition: width 0.3s ease;
}
.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #929297;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.steps span.active {
  color: #111;
}
.hero {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(119, 189, 50, 0.3);
  border-radius: 50%;
  right: -170px;
  top: -210px;
}
.hero-inner {
  max-width: 1240px;
  margin: auto;
  padding: 76px 28px 84px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  font-weight: 500;
  margin: 0 0 18px;
  max-width: 720px;
}
.hero p {
  max-width: 650px;
  color: #c8c8cc;
  font-size: 16px;
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pill {
  border: 1px solid #3d3d42;
  border-radius: 999px;
  padding: 11px 17px;
  font-size: 12px;
  color: #fff;
}
.pill b {
  color: var(--green);
}
.container {
  max-width: 1080px;
  margin: auto;
  padding: 0 24px;
}
.section {
  padding: 76px 0 30px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 7px;
}
.section-head p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  max-width: 650px;
}
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-count {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}
.info-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #c7c5bf;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 auto;
}
.info-item strong {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
}
.info-item span {
  font-size: 11px;
  color: var(--muted);
}
.measure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.measure-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.measure-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.measure-card.complete {
  border-color: rgba(119, 189, 50, 0.65);
}
.guide-media {
  height: 270px;
  background: #f2f1ee;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 35%);
  pointer-events: none;
}
.guide-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 2;
}
.zoom-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 10px;
  z-index: 3;
}
.zoom-btn:hover {
  background: #000;
}
.measure-content {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 22px;
}
.measure-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--green-dark);
  padding-top: 2px;
}
.measure-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.measure-title-row h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
.optional {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 7px;
  border: 1px solid #d7d5cf;
  color: #888;
  border-radius: 999px;
}
.measure-copy p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 8px 0 18px;
}
.measure-input-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 7px;
}
.required-dot {
  color: var(--green-dark);
}
.measure-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #bdbbb5;
  background: #fff;
  transition: border 0.2s, box-shadow 0.2s;
}
.measure-input-wrap:focus-within {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.measurement-input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  padding: 12px 13px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}
.unit-label {
  font-size: 11px;
  font-weight: 800;
  color: #777;
  padding: 0 13px;
  text-transform: uppercase;
}
.input-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 7px;
  font-size: 9px;
  color: #999;
}
.saved-state {
  font-weight: 700;
}
.measure-card.complete .saved-state {
  color: var(--green-dark);
}
.unit-bar {
  position: sticky;
  top: 73px;
  z-index: 20;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #27272a;
}
.unit-inner {
  max-width: 1080px;
  margin: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.unit-copy {
  font-size: 11px;
  color: #b9b9bd;
}
.unit-copy b {
  color: #fff;
}
.unit-toggle {
  display: flex;
  background: #2a2a2d;
  border-radius: 999px;
  padding: 3px;
  border: 1px solid #404045;
}
.unit-toggle button {
  border: 0;
  background: transparent;
  color: #999;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.unit-toggle button.active {
  background: #fff;
  color: #111;
}
.divider {
  height: 1px;
  background: var(--line);
  margin-top: 50px;
}
.review {
  padding: 70px 0 100px;
  background: var(--paper);
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: var(--shadow);
}
.review-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.review-top h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 34px;
  margin: 0 0 6px;
}
.review-top p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  font-size: 12px;
}
.review-row span:first-child {
  color: #666;
}
.review-row strong {
  font-size: 13px;
}
.submit-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.submit-btn {
  background: #111;
  color: #fff;
  border: 0;
  padding: 15px 25px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  min-width: 220px;
}
.submit-btn:hover {
  background: var(--green-dark);
}
.submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.submit-note {
  font-size: 10px;
  color: #888;
  max-width: 470px;
}
.footer {
  background: #0b0b0c;
  color: #fff;
  padding: 28px 24px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer span {
  color: var(--green);
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: #fff;
  max-width: 1000px;
  max-height: 92vh;
  position: relative;
  padding: 10px;
}
.modal-box img {
  display: block;
  max-width: calc(100vw - 60px);
  max-height: 85vh;
  width: auto;
  height: auto;
}
.close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  z-index: 2;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  font-size: 12px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 120;
}
.toast.show {
  transform: none;
  opacity: 1;
}
@media (max-width: 800px) {
  .measure-grid {
    grid-template-columns: 1fr;
  }
  .info-panel {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .section-count {
    display: block;
    margin-top: 12px;
  }
  .unit-bar {
    top: 69px;
  }
}
@media (max-width: 560px) {
  .topbar-inner {
    padding: 13px 17px;
  }
  .progress-wrap {
    padding: 0 17px 12px;
  }
  .top-note {
    display: none;
  }
  .hero-inner {
    padding: 56px 20px 62px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 58px 0 20px;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .guide-media {
    height: 230px;
  }
  .measure-content {
    grid-template-columns: 34px 1fr;
    padding: 18px;
    gap: 8px;
  }
  .measure-title-row h3 {
    font-size: 22px;
  }
  .info-panel {
    padding: 18px;
  }
  .unit-inner {
    padding: 10px 16px;
  }
  .unit-copy {
    display: none;
  }
  .review-card {
    padding: 20px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .submit-area {
    display: block;
  }
  .submit-btn {
    width: 100%;
    margin-top: 15px;
  }
}

/* XAR INPUT POLISH — fixes native input borders/widths and gives all fields a premium, consistent treatment */
.field-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
.field-grid > div {
  min-width: 0;
}
.field-grid .measure-input-wrap {
  width: 100%;
  min-height: 58px;
  height: 58px;
  border: 1px solid #c9c7c0 !important;
  background: #fff !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field-grid .measure-input-wrap:hover {
  border-color: #9f9c94 !important;
}
.field-grid .measure-input-wrap:focus-within {
  border-color: #121722 !important;
  box-shadow: 0 0 0 3px rgba(18, 23, 34, 0.07) !important;
  background: #fff !important;
}
.field-grid .measure-input-wrap input,
.field-grid .measure-input-wrap input[type="text"],
.field-grid .measure-input-wrap input[type="email"],
.field-grid .measure-input-wrap input[type="tel"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 16px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  color: #151518 !important;
  display: block !important;
}
.field-grid .measure-input-wrap input::placeholder {
  color: #9a9aa0 !important;
  opacity: 1 !important;
}
.field-grid .measure-input-label {
  margin-bottom: 9px !important;
  color: #111318 !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
}
.field-grid .required-dot {
  color: #a37c24 !important;
}
.field-grid > div:focus-within .measure-input-label {
  color: #121722 !important;
}
/* Keep the same treatment for measurement fields, while making them feel like intentional controls rather than browser inputs. */
.measure-input-wrap {
  min-width: 0;
  border-radius: 2px;
}
.measurement-input {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 0 !important;
  outline: 0 !important;
}
.measurement-input::placeholder {
  color: #aaa !important;
  opacity: 1 !important;
}
@media (max-width: 800px) {
  .field-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}
@media (max-width: 560px) {
  .field-grid {
    gap: 16px !important;
  }
  .field-grid .measure-input-wrap {
    min-height: 56px;
    height: 56px;
  }
  .field-grid .measure-input-wrap input {
    padding: 0 15px !important;
  }
}

.login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
}

.brand-side {
    position: relative;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px;
}

.brand-side::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(185, 149, 77, 0.22);
    border-radius: 50%;
    left: -240px;
    top: -190px;
}

.brand-side::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    right: -420px;
    bottom: -390px;
}

.brand-content {
    max-width: 430px;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 42px;
    letter-spacing: 0.13em;
    font-weight: 800;
}

.logo span {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    letter-spacing: 0;
    margin-left: 7px;
    font-weight: 500;
}

.rule {
    width: 45px;
    height: 1px;
    background: var(--gold);
    margin: 25px 0;
}

.brand-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 500;
    margin: 0 0 17px;
}

.brand-content p {
    font-size: 12px;
    line-height: 1.9;
    color: #aeb2c0;
    max-width: 350px;
}

.quote {
    margin-top: 70px;
    border-left: 1px solid var(--gold);
    padding-left: 16px;
    font-family: "Playfair Display", serif;
    color: #d7d9df;
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
}

.form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 30px;
    background: #fff;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600&display=swap");
* {
  box-sizing: border-box;
}
:root {
  --navy: #11172d;
  --navy2: #1c2542;
  --gold: #b9954d;
  --cream: #f5f4f0;
  --white: #fff;
  --line: #ddd9cf;
  --muted: #858792;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  color: #171923;
}
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}
.brand-side {
  position: relative;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px;
}
.brand-side:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(185, 149, 77, 0.22);
  border-radius: 50%;
  left: -240px;
  top: -190px;
}
.brand-side:after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -420px;
  bottom: -390px;
}
.brand-content {
  max-width: 430px;
  position: relative;
  z-index: 1;
}
.logo {
  font-size: 42px;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.logo span {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  letter-spacing: 0;
  margin-left: 7px;
  font-weight: 500;
}
.rule {
  width: 45px;
  height: 1px;
  background: var(--gold);
  margin: 25px 0;
}
.brand-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 17px;
}
.brand-content p {
  font-size: 12px;
  line-height: 1.9;
  color: #aeb2c0;
  max-width: 350px;
}
.quote {
  margin-top: 70px;
  border-left: 1px solid var(--gold);
  padding-left: 16px;
  font-family: "Playfair Display", serif;
  color: #d7d9df;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}


.login-card {
    width: 100%;
    max-width: 420px;
}

.eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 9px;
}

.login-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;
    margin: 0;
    color: var(--navy);
}

.subtitle {
    font-size: 10px;
    color: var(--muted);
    margin: 9px 0 32px;
    line-height: 1.7;
}

.field {
    margin-bottom: 19px;
}

.field label {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: #4e505a;
    margin-bottom: 8px;
}

.input-wrap {
    position: relative;
}

.input-wrap input {
    width: 100%;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0 14px;
    outline: 0;
    font-size: 11px;
    color: #171923;
    background: #fff;
    transition: 0.18s;
    box-sizing: border-box;
}

.input-wrap input:focus {
    border-color: #8d91a0;
    box-shadow: 0 0 0 3px rgba(17, 23, 45, 0.045);
}

.input-wrap input::placeholder {
    color: #b2b2b2;
}

.toggle {
    position: absolute;
    right: 10px;
    top: 8px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    cursor: pointer;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3px 0 24px;
    font-size: 9px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #737580;
}

.remember input {
    accent-color: var(--navy);
}

.forgot {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
}

.forgot:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 9px;
    font-weight: 800;
    transition: 0.18s;
    cursor: pointer;
}

.login-btn:hover {
    background: var(--navy2);
    transform: translateY(-1px);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 27px 0;
    color: #aaa;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

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

.secure {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #999;
    font-size: 8px;
    align-items: center;
}

.secure b {
    color: #6e806f;
    font-size: 11px;
}

.error {
    display: none;
    background: #fff0ef;
    border: 1px solid #e3bfbc;
    color: #a95450;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 9px;
    margin-bottom: 15px;
}

.error.show {
    display: block;
}

.success {
    display: none;
    background: #edf6ee;
    border: 1px solid #bdd2be;
    color: #4f8754;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 9px;
    margin-bottom: 15px;
}

.success.show {
    display: block;
}

.footer {
    position: fixed;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 8px;
    color: #9a9aa0;
    pointer-events: none;
}

@media (max-width: 800px) {
    .login-page {
        grid-template-columns: 1fr;
    }

    .brand-side {
        display: none;
    }

    .form-side {
        min-height: 100vh;
        padding: 30px 22px;
    }

    .footer {
        position: static;
        margin-top: -25px;
        padding-bottom: 15px;
    }

    .login-card h2 {
        font-size: 34px;
    }
}



