body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom right, #f8c8dc, #d5b3ff);
  color: #333;
}

.container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #772d8b;
  margin-bottom: 0.5rem;
}

p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

textarea {
  width: 96%;
  min-height: 80px;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  resize: vertical;
}

button {
  display: block;
  margin: 2rem auto 0;
  background: #772d8b;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #5e2370;
}

#status {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}
