/* =====================================================
   PÁGINA: LOGIN
   Styles de inputs/textarea están en componentes/formularios.css
   ===================================================== */
.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.auth-box {
  background: #fff;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
}

.auth-box h1 {
  margin-bottom: 20px;
  text-align: center;
}

.auth-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 15px;
}