@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Custom styles */
html {
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  background-color: rgb(249 250 251);
  color: rgb(17 24 39);
  font-feature-settings: 'cv11', 'ss01';
  font-variation-settings: 'opsz' 32;
}

/* Form input improvements */
input[type="email"],
input[type="password"],
input[type="text"],
input[type="search"],
select,
textarea {
  appearance: none;
  background-color: white;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(209 213 219);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgb(59 130 246);
  box-shadow: 0 0 0 1px rgb(59 130 246);
}

input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder,
input[type="search"]::placeholder,
textarea::placeholder {
  color: rgb(156 163 175);
}

/* Button improvements */
button[type="submit"] {
  cursor: pointer;
}

button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
