/* Catant brand accent for auth/login pages only (scoped to .oh-auth).
   Overrides the legacy orange secondary accent with brand blue #2563EB.
   Uses selector specificity (.oh-auth ...) rather than !important so
   inline-styled tint buttons (e.g. Initialize Database / Demo Data) keep
   their own styling. */

.oh-auth .oh-btn--secondary {
  background-color: #2563EB;
  border-color: #2563EB;
  color: #ffffff;
}

.oh-auth .oh-btn--secondary:hover,
.oh-auth .oh-btn--secondary:focus {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.oh-auth .oh-link--secondary,
.oh-auth a.oh-link--secondary {
  color: #2563EB;
}

.oh-auth .oh-link--secondary:hover {
  color: #1d4ed8;
}
