/* 1) Cargar la fuente — ESTO SIEMPRE VA PRIMERO, arriba del todo */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* 2) Color de acento (botones, enlaces) */
:root {
  --primary: #2b6cb0;
}

/* 3) Aplicar la fuente a toda la app */
body, input, button, textarea, select, a, span, div, p, li {
  font-family: 'Inter', sans-serif !important;
}

/* 4) Logo en la pantalla de inicio de sesión */
.component_page_connection_form form:before {
  content: "";
  display: block;
  height: 70px;
  margin: 0 auto 20px;
  background: url("https://cdn.brandsofts.com/tu-logo.png") center / contain no-repeat;
}