/* Import a clean Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #f0f2f5;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

form {
  background: #ffffff;
  padding: 2rem;
  margin: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.4s ease-in-out;
}

h1 {
  margin-top: 0;
  font-size: 1.75rem;
  text-align: center;
  color: #1a1a1a;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0077ff;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  display: block;
  width: 100%;
  background: #0077ff;
  color: white;
  font-size: 1rem;
  padding: 0.85rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.25s ease;
}

button:hover {
  background: #005ed8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  form {
    margin: 1rem;
    padding: 1.25rem;
  }

  h1 {
    font-size: 1.5rem;
  }
}
