/* Simple spinner (non-generator).
   Keep this isolated so generator aura changes can't affect auth flows. */

.iv-simple-spinner {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 4px solid rgba(148, 163, 184, 0.35); /* slate-400 */
  border-top-color: #ff0050; /* brand */
  animation: ivSimpleSpin 0.9s linear infinite;
}

@keyframes ivSimpleSpin {
  to {
    transform: rotate(360deg);
  }
}

