/* BIZU — Entrar / primeiro acesso */
body { overflow: hidden; }
.login-wrap {
  display: grid;
  grid-template-columns: minmax(420px, 44%) 1fr;
  height: 100vh;
  position: relative;
  z-index: 1;
}

/* ----- Coluna do formulário ----- */
.login-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(36px, 6vw, 92px);
  background: linear-gradient(180deg, var(--bg1), var(--bg0));
  border-right: 1px solid var(--line);
  position: relative;
}
.login-brand { display: flex; align-items: center; gap: 12px; position: absolute; top: 40px; }
.login-brand img { height: 44px; width: auto; }

.login-form-col h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 10px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.login-form-col .sub { color: var(--muted); margin-bottom: 36px; font-size: 15px; }

.login-form .btn { width: 100%; margin-top: 26px; padding: 15px; font-size: 15.5px; min-height: 48px; }
.login-form .btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.login-error { min-height: 21px; margin-top: 12px; color: #ffa3a3; font-size: 13.5px; line-height: 1.45; }
.login-aux {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 18px; font-size: 13.5px; color: var(--muted);
}
.login-aux a { color: var(--yellow); font-weight: 600; }
.login-aux a:hover { text-decoration: underline; }
.login-foot {
  position: absolute; bottom: 34px;
  font-family: var(--font-mono); font-size: 11px; color: var(--faint); letter-spacing: 0.08em;
}

.pending-card { padding: 26px 26px 24px; }
.pending-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 12px; }
.pending-card p:last-of-type { margin-bottom: 0; }
.pending-card a[href^="mailto"] { color: var(--yellow); font-weight: 600; overflow-wrap: anywhere; }
.pending-card .row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* ----- Coluna de arte ----- */
.login-art {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px clamp(40px, 6vw, 96px);
  background:
    radial-gradient(1100px 700px at 85% 0%, rgba(30, 58, 110, 0.5), transparent 60%),
    radial-gradient(800px 600px at 10% 100%, rgba(255, 184, 28, 0.13), transparent 55%),
    var(--bg0);
}
.login-art::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 60% 40%, #000 30%, transparent 85%);
}
.art-tape {
  position: absolute; top: 88px; left: -60px;
  width: 460px; height: 34px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 22px, #0c0c0c 22px 44px);
  transform: rotate(-8deg);
  opacity: 0.92;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.art-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 13ch;
  position: relative;
}
.art-headline em { font-style: normal; color: var(--yellow); }
.art-sub { color: var(--text-dim); font-size: 16.5px; max-width: 46ch; margin-top: 20px; position: relative; }

.art-stats {
  display: flex; gap: 44px; margin-top: 44px; position: relative;
  border-top: 1px solid var(--line-strong);
  padding-top: 26px;
}
.art-stats strong { font-family: var(--font-display); font-size: 27px; font-weight: 800; display: block; letter-spacing: -0.02em; }
.art-stats span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.art-mark {
  position: absolute; top: 48px; right: 52px;
  font-family: var(--font-mono); font-size: 11px; color: var(--faint);
  text-align: right; line-height: 2;
  letter-spacing: 0.12em;
}

@media (max-width: 860px) {
  .login-wrap { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .login-art { display: none; }
  body { overflow: auto; }
  .login-form-col {
    justify-content: flex-start;
    padding: 36px 24px 48px;
    min-height: 100vh;
    border-right: none;
  }
  .login-brand { position: static; margin-bottom: 48px; }
  .login-form-col h1 { font-size: 27px; }
  .login-foot { position: static; margin-top: 56px; }
  .login-aux { flex-direction: column; align-items: flex-start; gap: 4px; }
}
