/*
 * IT Efectivos custom theme for GLPI 11.
 * Extends the default light palette (auror) with company branding
 * and a more polished login card.
 */
:root[data-glpi-theme=itefectivos] {
  --glpi-palette-color-1: #1b2f62;
  --glpi-palette-color-2: #fff;
  --glpi-palette-color-3: #3a5693;
  --glpi-palette-color-4: #fec95c;
}

body.welcome-anonymous {
  background: radial-gradient(ellipse at top left, rgba(27, 47, 98, 0.12) 0%, transparent 55%), radial-gradient(ellipse at bottom right, rgba(254, 201, 92, 0.1) 0%, transparent 55%), linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
}
body.welcome-anonymous .glpi-logo {
  --logo: url("/pics/logos/itefectivos-logo.png") !important;
  content: url("/pics/logos/itefectivos-logo.png") !important;
  width: 280px !important;
  height: 80px !important;
  object-fit: contain;
}
body.welcome-anonymous .main-content-card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgba(27, 47, 98, 0.18), 0 4px 12px -4px rgba(27, 47, 98, 0.08);
  overflow: hidden;
}
body.welcome-anonymous .main-content-card .card-body {
  padding: 2.25rem 2rem;
}
body.welcome-anonymous .main-content-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #1b2f62 0%, #3a5693 50%, #fec95c 100%);
}
body.welcome-anonymous h2 {
  color: #1b2f62;
  font-weight: 600;
  letter-spacing: -0.02em;
}
body.welcome-anonymous .form-control {
  border-radius: 8px;
  border-color: #d6dbe4;
  transition: all 0.15s ease;
}
body.welcome-anonymous .form-control:focus {
  border-color: #3a5693;
  box-shadow: 0 0 0 3px rgba(58, 86, 147, 0.15);
}
body.welcome-anonymous .btn-primary {
  background: linear-gradient(180deg, #1b2f62 0%, #16264f 100%);
  border: 0;
  border-radius: 8px;
  padding: 0.625rem 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.15s ease;
}
body.welcome-anonymous .btn-primary:hover, body.welcome-anonymous .btn-primary:focus {
  background: linear-gradient(180deg, #243b7a 0%, #1b2f62 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(27, 47, 98, 0.4);
}
body.welcome-anonymous .singlesignon-login {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
body.welcome-anonymous .singlesignon-login .singlesignon-login-title {
  color: #1b2f62;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
body.welcome-anonymous .singlesignon-login-button {
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-weight: 500;
  transition: all 0.15s ease;
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.15);
}
body.welcome-anonymous .singlesignon-login-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25);
  filter: brightness(1.08);
}
body.welcome-anonymous .singlesignon-login-remember {
  background: rgba(27, 47, 98, 0.04);
  border: 1px solid rgba(27, 47, 98, 0.08);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  margin-top: 0.75rem;
}
body.welcome-anonymous .text-muted .copyright {
  color: #8590a3 !important;
  font-size: 0.8rem;
}