form {
  margin: 40px auto;
  width: 400px;
  padding: 25px;
  background-color: #fef9f9;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(200, 50, 100, 0.2);
  font-family: 'Segoe UI', sans-serif;
}

h3 {
  text-align: center;
  color: #c2185b;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

input, textarea {
  width: 100%;
  background: #fff;
  border: 2px solid #c2185b;
  border-radius: 6px;
  padding: 10px;
  margin-top: 5px;
  font-size: 15px;
  color: #333;
}

textarea {
  height: 120px;
  resize: vertical;
}

#submit {
  width: 100%;
  height: 40px;
  background-color: #c2185b;
  color: #fff;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submit:hover {
  background-color: #a3154a;
}
