/* Hide ONLY login/register content */
html.force-sso-hide-login #main,
html.force-sso-hide-login main,
html.force-sso-hide-login section.container,
html.force-sso-hide-login form {
  display: none !important;
}

/* Full-screen loader overlay */
html.force-sso-hide-login::before {
  content: "";
  position: fixed;
  inset: 0;
  background: white;
  z-index: 2147483647;
}

/* Loader text + spinner */
html.force-sso-hide-login::after {
  content: "Redirecting to DanceResource login system…";
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  color: #666;
  z-index: 2147483648;
}

/* Optional spinner */
html.force-sso-hide-login::after {
  gap: 12px;
}

html.force-sso-hide-login::after::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-top-color: #666;
  border-radius: 50%;
  animation: force-sso-spin 0.9s linear infinite;
}

@keyframes force-sso-spin {
  to { transform: rotate(360deg); }
}
