/* === PÁGINA LOGIN === */
.lp-page {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* LADO ESQUERDO */
.lp-left {
  background: linear-gradient(160deg, var(--verde-profundo) 0%, var(--bg) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  border-right: 1px solid var(--borda-forte);
}

.lp-left-inner {
  max-width: 420px;
  width: 100%;
}

.lp-logo {
  display: block;
  margin-bottom: 40px;
}

.lp-titulo {
  font-family: var(--font-titulo);
  font-size: 64px;
  color: var(--texto);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.lp-titulo span { color: var(--amarelo); }

.lp-desc {
  font-size: 15px;
  color: var(--texto-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 360px;
}

.lp-ze-card {
  background: var(--card);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  border: 1px solid var(--borda-forte);
}

.lp-ze-ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--verde);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: var(--bg);
  flex-shrink: 0;
}

.lp-ze-frase {
  font-size: 13px;
  color: var(--texto-muted);
  font-style: italic;
  line-height: 1.5;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-stat-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--verde-neon);
  line-height: 1;
}

.lp-stat-label {
  font-size: 11px;
  color: var(--texto-muted);
  font-weight: 600;
}

/* LADO DIREITO */
.lp-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  background: var(--bg);
}

.lp-form-wrap {
  max-width: 400px;
  width: 100%;
}

.lp-form-header {
  margin-bottom: 32px;
}

.lp-form-titulo {
  font-family: var(--font-titulo);
  font-size: 36px;
  color: var(--texto);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.lp-form-sub {
  font-size: 14px;
  color: var(--texto-muted);
}

.lp-link {
  color: var(--verde-neon);
  font-weight: 700;
  transition: color .2s;
}

.lp-link:hover { color: var(--amarelo); }

/* CAMPOS */
.lp-form { display: flex; flex-direction: column; gap: 20px; }

.lp-field { display: flex; flex-direction: column; gap: 8px; }

.lp-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--texto-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.lp-forgot { font-size: 12px; }

.lp-input-wrap { position: relative; }

.lp-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--borda-forte);
  border-radius: 8px;
  color: var(--texto);
  font-size: 15px;
  font-family: var(--font-texto);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.lp-input::placeholder { color: var(--texto-faint); }
.lp-input:focus { border-color: var(--verde-neon); }

.lp-input-wrap .lp-input { padding-right: 48px; }

.lp-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--texto-muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.lp-eye:hover { color: var(--texto); }

/* CHECKBOX */
.lp-remember { margin-top: -4px; }

.lp-check-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.lp-check-wrap input { display: none; }

.lp-checkmark {
  width: 18px; height: 18px;
  border: 1px solid var(--borda-forte);
  border-radius: 4px;
  background: var(--card);
  flex-shrink: 0;
  transition: all .2s;
  position: relative;
}

.lp-check-wrap input:checked + .lp-checkmark {
  background: var(--verde);
  border-color: var(--verde);
}

.lp-check-wrap input:checked + .lp-checkmark::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: 2px solid var(--bg);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.lp-check-label {
  font-size: 13px;
  color: var(--texto-muted);
}

/* BOTÃO */
.lp-btn-entrar {
  width: 100%;
  background: var(--verde);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: background .2s ease;
  font-family: var(--font-texto);
  margin-top: 4px;
}

.lp-btn-entrar:hover { background: var(--verde-neon); }
.lp-btn-entrar:disabled { opacity: .7; cursor: not-allowed; }

/* DIVISOR */
.lp-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--texto-faint);
  font-size: 12px;
}

.lp-divider::before,
.lp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--borda-sutil);
}

/* SOCIAL */
.lp-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--borda-forte);
  border-radius: 8px;
  color: var(--texto);
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-texto);
}

.lp-social-btn:hover {
  border-color: var(--borda-forte);
  background: var(--surface);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .lp-page { grid-template-columns: 1fr; }
  .lp-left { display: none; }
  .lp-right { padding: 40px 24px; min-height: calc(100vh - 80px); }
}