/* =========================================================================
   app.css — Estilos base de la plataforma.
   El tema oscuro y los componentes del dashboard se amplian en la Etapa 15.
   Variables de color centralizadas para facilitar el theming por empresa.
   ========================================================================= */

:root {
  --brand: #1565c0;
  --brand-dark: #0d47a1;
  --bg: #f4f6f9;
  --surface: #ffffff;
  --text: #263238;
  --muted: #78909c;
}

body {
  background: var(--bg);
  color: var(--text);
}

.full-width { width: 100%; }

/* ----- Pantallas de autenticacion ----- */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 24px;
}

.auth-wrapper { width: 100%; max-width: 420px; }

.auth-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 32px 28px;
}

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.auth-brand .material-icons { font-size: 2rem; }

.card-panel { padding: 12px 16px; margin: 0 0 16px; font-size: .9rem; }
