
:root {
  --tz-navy: #0d0a1b;
  --tz-white: #fff;
  --tz-white-2: #fafbff;
  --tz-btn: #171c38;
  --tz-btn-2: #262b30;
  --tz-grad-blue: #a7d9fa;
  --tz-grad-violet: #c8d8fb;
  --tz-accent: hsla(252, 96%, 60%, 1);
  --tz-border: #e8efff;
  --tz-muted: hsla(223, 11%, 35%, 0.78);
  --tz-radius: 15px;
  --tz-pill: 999px;
  --tz-error: #c0392b;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--tz-navy);
  background: var(--tz-white-2);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.tz-shell {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: 100vh;
}
.tz-brand {
  position: relative;
  background: var(--tz-navy);
  color: var(--tz-white);
  padding: 36px 40px 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tz-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 420px at -10% -5%, rgba(167, 217, 250, 0.55), transparent 58%),
    radial-gradient(520px 380px at 110% 20%, rgba(200, 216, 251, 0.45), transparent 55%),
    radial-gradient(400px 300px at 40% 110%, rgba(124, 92, 252, 0.28), transparent 60%);
  pointer-events: none;
}
.tz-brand > * { position: relative; z-index: 1; }
.tz-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 48px;
  transition: opacity 0.15s ease;
}
.tz-logo:hover { opacity: 0.88; }
.tz-logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.tz-brand-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.tz-brand h1 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.tz-brand-lead {
  margin: 0 0 36px;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}
.tz-trust {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tz-trust li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.tz-trust .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tz-grad-blue), var(--tz-accent));
}
.tz-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(900px 360px at 100% 0%, rgba(200, 216, 251, 0.35), transparent 55%),
    radial-gradient(700px 300px at 0% 100%, rgba(167, 217, 250, 0.25), transparent 50%),
    var(--tz-white-2);
  padding: 48px 48px 64px;
  min-height: 100vh;
}
.tz-form-inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  animation: tzFadeIn 0.36s ease;
}
@keyframes tzFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tz-form-inner h2 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.tz-form-inner .sub {
  margin: 0 0 28px;
  color: var(--tz-muted);
}
.tz-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tz-field { display: flex; flex-direction: column; gap: 6px; }
.tz-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--tz-navy);
}
.tz-field input {
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--tz-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--tz-navy);
  background: var(--tz-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  width: 100%;
}
.tz-field input:focus {
  border-color: color-mix(in srgb, var(--tz-accent) 55%, var(--tz-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tz-accent) 16%, transparent);
}
.tz-field.has-error input {
  border-color: var(--tz-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.tz-err {
  display: none;
  font-size: 12px;
  color: var(--tz-error);
  margin: 0;
}
.tz-field.has-error .tz-err { display: block; }
.tz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  margin-top: 24px;
  padding: 0 32px;
  border: none;
  border-radius: var(--tz-pill);
  background: var(--tz-btn);
  color: var(--tz-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.tz-btn:hover {
  background: color-mix(in srgb, var(--tz-btn) 88%, white);
  transform: translateY(-1px);
}
.tz-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.tz-form-error {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.08);
  color: var(--tz-error);
  font-size: 13px;
}
.tz-form-error.show { display: block; }
.tz-micro {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--tz-muted);
  text-align: center;
}
.tz-micro a {
  color: var(--tz-accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.tz-micro a:hover { border-bottom-color: var(--tz-accent); }
@media (max-width: 900px) {
  .tz-shell { grid-template-columns: 1fr; }
  .tz-brand {
    padding: 24px 20px 28px;
    min-height: auto;
  }
  .tz-logo { margin-bottom: 24px; }
  .tz-brand h1 { font-size: 24px; }
  .tz-brand-lead { margin-bottom: 20px; font-size: 14px; }
  .tz-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 0;
  }
  .tz-trust li { font-size: 12px; }
  .tz-form-side {
    padding: 32px 20px 48px;
    min-height: auto;
    justify-content: flex-start;
  }
}
  
/* Webflow's global h1 rule overrides inherited color, so state it explicitly. */
.tz-brand h1,.tz-brand h2,.tz-brand h3{color:var(--tz-white)}
