/* Login-only composition. Auth controls stay governed by customer_auth.css;
   this file changes presentation without changing authentication behavior. */
.tl-auth-login-page {
  background:
    radial-gradient(900px 520px at 18% 46%, rgba(240, 181, 68, 0.055), transparent 64%),
    var(--tl-navy);
}

.tl-auth-login-page main {
  padding: 0 var(--tl-space-8);
}

.tl-login-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  width: min(100%, 1040px);
  min-height: 610px;
  margin: clamp(28px, 5vh, 58px) auto 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tl-login-shell::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 86px;
  height: 1px;
  background: var(--tl-gold);
}

.tl-login-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 48px clamp(44px, 6vw, 76px) 42px 8px;
}

.tl-login-lockup {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  color: #F4EBD7;
  text-decoration: none;
}

.tl-login-lockup:hover { color: #F4EBD7; }

.tl-login-lockup img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.tl-login-lockup span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.tl-login-brand-copy {
  max-width: 480px;
  margin: 70px 0 auto;
}

.tl-login-kicker {
  margin: 0 0 18px;
  color: var(--tl-gold);
  font-family: var(--tl-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tl-login-brand-copy h2 {
  margin: 0;
  color: var(--tl-ink);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 5.3vw, 68px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.tl-login-brand-copy h2 em {
  color: var(--tl-gold);
  font-weight: 400;
}

.tl-login-brand-copy > p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(201, 209, 217, 0.64);
  font-size: 15px;
  line-height: 1.7;
}

.tl-login-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 38px 0 0;
  color: rgba(201, 209, 217, 0.48);
  font-family: var(--tl-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tl-login-trust span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tl-signal-green);
  box-shadow: 0 0 12px rgba(91, 208, 138, 0.45);
}

.tl-auth-card.tl-auth-card-login {
  align-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 54px 0 54px clamp(44px, 5vw, 68px);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  box-shadow: none;
}

.tl-auth-card-login .tl-auth-eyebrow { margin-bottom: 16px; }

.tl-auth-card-login h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.tl-auth-card-login .lede { margin-bottom: 28px; }
.tl-auth-card-login .tl-auth-form { margin-top: 0; }

.tl-auth-login-page .tl-footer {
  margin-top: 0;
}

@media (max-width: 860px) {
  .tl-auth-login-page main { padding: 0 24px; }
  .tl-login-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 26px;
  }
  .tl-login-brand {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .tl-login-lockup img { width: 62px; height: 62px; }
  .tl-login-brand-copy { display: none; }
  .tl-login-trust { margin: 0; }
  .tl-auth-card.tl-auth-card-login {
    width: min(100%, 500px);
    margin: 0 auto;
    padding: 48px 0 56px;
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .tl-auth-login-page main { padding: 0 18px; }
  .tl-login-shell { margin: 16px auto 48px; }
  .tl-login-brand { display: block; padding: 22px 0; }
  .tl-login-lockup { gap: 12px; }
  .tl-login-lockup img { width: 52px; height: 52px; }
  .tl-login-lockup span { font-size: 21px; }
  .tl-login-trust { display: none; }
  .tl-auth-card.tl-auth-card-login {
    margin: 0;
    padding: 38px 0 44px;
  }
  .tl-auth-card-login h1 { font-size: 36px; }
  .tl-auth-card-login .tl-auth-footer-sep { margin: 0 5px; }
}
