* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Ensure inputs have consistent styling */
input {
  font-family: 'DM Sans', sans-serif;
}

input:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 2rem !important;
  }

  .text-3xl {
    font-size: 1.5rem;
  }
}

/* Custom scrollbar for consistency */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #9333ea;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7e22ce;
}
