

body {
  margin: 0;
  min-height: 100vh;
  background: #343E4F;
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #28303D;
  padding-top:0;
}

.login-split {
  --navy: #343E4F;
  --navy-deep: #2A323F;
  --gold: #FCDF8C;
  --gold-rule: #E9C766;
  --silver: #ACB0BC;
  --silver-muted: #8B909E;
  --text-dark: #28303D;
  --text-muted: #6B7180;
  --border-light: #DFE2E8;
  --border-hover: #C7CBD4;
  --form-bg-hover: #F7F8FA;

  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.login-split__brand {
  background: var(--navy-deep);
  color: #fff;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-split__mark {
  position: absolute;
  top: 44px;
  left: 64px;
  width: 84px;
  height: auto;
}

.login-split__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-muted);
}

.login-split__headline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 16ch;
  margin: 14px 0 0;
}

.login-split__rule {
  width: 200px;
  height: 2px;
  margin: 22px 0;
  background: linear-gradient(90deg, transparent, var(--gold-rule), transparent);
}

.login-split__lede {
  color: var(--silver);
  font-size: 17px;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0;
}

.login-split__secure {
  position: absolute;
  bottom: 48px;
  left: 64px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--silver-muted);
}

.login-split__secure svg {
  width: 14px;
  height: 14px;
}

.login-split__form {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.login-box {
  width: 100%;
  max-width: 360px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.login-box h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.login-box .subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 28px;
  line-height: 1.5;
}

.btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--border-hover);
  background: #fff;
  color: var(--text-dark);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  background: var(--form-bg-hover);
  border-color: var(--silver);
}

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

.btn-microsoft {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-microsoft:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex: none;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--silver-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.btn-google,
.btn-otp {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-google:hover,
.btn-otp:hover {
  background: var(--form-bg-hover);
  border-color: var(--border-hover);
}

.btn-google.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon {
  font-size: 11px;
  color: #946A17;
  background: #FDF0C8;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
}

.footer-text {
  margin: 28px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--silver-muted);
}

@media (max-width: 920px) {
  .login-split {
    grid-template-columns: 1fr;
  }
  .login-split__brand {
    display: none;
  }
  .login-split__form {
    padding: 32px 24px;
  }
}
