/* Form scaling + style */
.event-form {
  max-width: 500px;   /* keeps it from stretching too wide */
  margin: auto;       /* centers form on page */
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  font-size: 0.9rem;  /* slightly smaller text */
}

.event-form label {
  display: block;
  margin-bottom: 12px;
}

.event-form input,
.event-form textarea,
.event-form select {
  width: 100%;
  padding: 6px;
  font-size: 0.9rem;
  margin-top: 4px;
  box-sizing: border-box;
}

.event-form button {
  background: #1a3d7c;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.event-form button:hover {
  background: #0d2a56;
}
