/* ============================================================================
   css/auth.css — Layout das páginas de login, cadastro e recuperação de senha
   ============================================================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: "";
  position: absolute;
  top: -20%; left: 50%;
  width: 900px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18), transparent 70%);
  pointer-events: none;
}

.auth-box {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}

.auth-logo__mark {
  width: 30px; height: 30px;
  object-fit: contain; display: block;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
}

.auth-card h1 {
  font-size: 22px;
  margin-bottom: 6px;
  text-align: center;
}

.auth-card__subtitle {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  margin-bottom: 28px;
}

.auth-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.auth-footer a { color: var(--primary-hover); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

.auth-forgot {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 18px;
}
.auth-forgot a { font-size: 13px; color: var(--muted); }
.auth-forgot a:hover { color: var(--primary-hover); }

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.auth-back:hover { color: var(--text); }
