/* ====================================
   AUTH PAGES PERFORMANCE OPTIMIZATIONS
   ==================================== */

/* Minimal optimizations that won't interfere with existing styles */

/* Font smoothing */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* GPU acceleration for modals only */
.modal {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Smooth button transitions */
button {
  transition: all 0.2s ease;
}
