html.lua-auth-redirect-pending {
  background-color: #f8f9fa;
}

html.lua-auth-redirect-pending body {
  visibility: hidden;
}

html.lua-auth-redirect-pending::before {
  content: "Validando enlace de activación…";
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #495057;
  text-align: center;
  pointer-events: none;
}

html.lua-auth-redirect-pending::after {
  content: "";
  position: fixed;
  top: calc(50% - 2.75rem);
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  border: 0.2rem solid #dee2e6;
  border-top-color: #0d6efd;
  border-radius: 50%;
  z-index: 10001;
  animation: lua-auth-redirect-spin 0.75s linear infinite;
  pointer-events: none;
}

@keyframes lua-auth-redirect-spin {
  to {
    transform: rotate(360deg);
  }
}
