/* ============================================================
   Tramalytic — auth.css (login, cadastro e landing)
   ============================================================ */

/* ---------- Telas de autenticação ---------- */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-wrap--single {
  grid-template-columns: 1fr;
}

.auth-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(193,255,114,.22), transparent 46%),
    radial-gradient(circle at 6% 92%, rgba(193,255,114,.12), transparent 42%),
    linear-gradient(135deg, #232740 0%, #181a2b 55%, #2b3052 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}
.auth-art .art-logo { margin-bottom: 40px; }
.auth-art .art-logo img { height: 100px; width: auto; }
.auth-art .art-quote { font-family: "Unbounded", sans-serif; font-size: 35px; font-weight: 600; line-height: 1.2; max-width: 460px; letter-spacing: -.01em; }
.auth-art .art-sub { margin-top: 40px; font-size: 16px; opacity: .85; max-width: 440px; line-height: 1.4; font-weight: 400; }

.art-points { margin-top: 38px; display: flex; flex-direction: column; gap: 16px; }
.art-point { display: flex; align-items: flex-start; gap: 13px; font-size: 13.5px; opacity: .95; }
.art-point .ap-ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.art-point .ap-ico svg { width: 20px; height: 20px; color:black; }
.art-point b { display: block; font-weight: 600; margin-bottom: 2px; }
.art-point span { font-size: 14px; line-height: 1.4; display: block; }

.auth-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--lime);
}

.auth-card {
  width: 100%;
  max-width: 430px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 30px 30px;
}
.auth-card .auth-logo { display: flex; justify-content: center; margin-bottom: 26px; }
.auth-card h1 { font-size: 21px; font-weight: 600; text-align: center; }
.auth-card .auth-sub { text-align: center; font-size: 13px; color: var(--muted); margin: 7px 0 26px; line-height: 1.6; }

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-extra { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.auth-extra a { font-weight: 400; color: var(--muted) }

.auth-foot { text-align: center; font-size: 13px; color: var(--muted); margin-top: 24px; }
.auth-foot a { font-weight: 600; }

.demo-note {
  margin-top: 22px;
  background: var(--lime-100);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 12px;
  color: var(--lime-ink);
  display: flex; gap: 9px; align-items: flex-start;
  line-height: 1.55;
}
.demo-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

/* ---------- Notas de sucesso/erro (esqueci-senha, redefinir-senha) ---------- */
.auth-note {
  margin-top: 22px;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.auth-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.auth-note--ok { background: var(--lime-100); color: var(--lime-ink); }
.auth-note--err { background: var(--red-100); color: var(--red); }
.auth-note--err a { color: var(--red); font-weight: 600; text-decoration: underline; }

.auth-copy { margin-top: 26px; font-size: 14px; color: black; font-weight: 500; }

@media (max-width: 992px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-art { display: none; }
}
