/* ==========================================================================
   MOMSLY — ANIMATIONS (disabled)
   Every transition and keyframe animation is switched off app-wide for a
   snappier, instant feel — state changes (page load, sheets, toasts,
   hover/press states) apply immediately instead of easing in.
   ========================================================================== */

*, *::before, *::after {
  animation: none !important;
  transition: none !important;
}

/* Static loading-spinner ring (used on auth submit buttons) — kept as a
   plain two-tone circle so it still reads as "working", just not spinning. */
.spinner {
  width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff; border-radius: 50%;
  display: inline-block;
}
