/* LH - CRM — overrides da tela de login
   Aplicado via /brand-assets/lh-login.css (bind-mount de /opt/chatwoot-trial/brand-assets) */

/* 1. Esconde o título "Entrar no LH - CRM" (h2 que fica na mesma section do logo) */
section:has(> img[alt="LH - CRM"]) h2 { display: none !important; }

/* 2. Logo gigante + máscara circular (remove o quadrado branco do PNG) */
section img[alt="LH - CRM"] {
  height: 14.4rem !important;          /* ~256px — antes era h-8 (32px) */
  width: 14.4rem !important;
  max-width: 14.4rem !important;
  margin-top: 2rem !important;
  margin-bottom: 0.5rem !important;
  clip-path: circle(46% at 50% 50%);
  -webkit-clip-path: circle(46% at 50% 50%);
  object-fit: cover;
}

/* 3. Botão de login na cor #10e31a (verde-limão) */
form button[data-testid="submit_button"] {
  background-color: #10e31a !important;
  color: #0a1f04 !important;
}
form button[data-testid="submit_button"]:hover:enabled,
form button[data-testid="submit_button"]:focus-visible {
  background-color: #0fbf17 !important;
  color: #0a1f04 !important;
}
