body {
  background-color: #f4fef8;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

form {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  color: #4caf7d;
}

label {
  display: block;
  margin-bottom: 1rem;
  color: #333;
}

input, textarea {
  width: 100%;
  height: 38px;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.3rem;
}

button {
  width: 100%;
  background-color: #7dcfa2;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
}

button:hover {
  background-color: #66bb94;
}
