/* General layout and utility styles extracted from signup.html */

body {
  background: #1E3C3C;
  color: #5FAA44;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  body {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Improve touch targets */
  button, 
  a, 
  input, 
  select, 
  textarea {
    touch-action: manipulation;
  }
  
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
} 