body {
  font-family: 'Arial', sans-serif;
  background: #fffaf7;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 500px;
  margin: 5% auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

h1 {
  color: #e56b6f; /* matches logo */
  margin-bottom: 10px;
}

p {
  color: #333;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 150px;
  max-height: 500px;
}

button {
  background: #e56b6f; /* matches logo */
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
  transition: background 0.3s ease;
}

button:hover {
  background: #c94b4f; /* darker shade on hover */
}
