.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;

  padding: 40px 20px;
  background-color: #f9f9f9; /* Optional background */
  text-align: center;
}

h1 {
  margin-top: 40px;
  font-size: 32px;
  color: #222;
}

p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 500px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

form textarea {
  min-height: 100px;
  resize: vertical;
}

form button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #0056b3;
}

#form-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 40px;
  background-color: #f0f8ff;
  color: #333;
  font-size: 20px;
  border: 2px solid #007bff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 9999;
}

#form-message.success {
  background-color: #d4edda;
  border-color: #28a745;
  color: #155724;
}

#form-message.error {
  background-color: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}

.hidden {
  display: none;
}
