body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e0eafc);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 470px;
  margin: 10vh auto;
}


h1 {
  color: #222;
  margin-bottom: 0.5rem;
}

.subtext {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

input, textarea, button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button {
  background-color: #222;
  color: white;
  border: none;
  font-weight: bold;
  transition: background 0.3s;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}

#status {
  margin-top: 1rem;
  color: red;
}