.enquire-form {
  width: 100%;
  max-width: 500px;
  /* margin: 0 auto; */
}

@media (max-width: 980px) {
  .enquire-form {
    margin-bottom: 2rem;
  }
}

.enquire-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquire-form label,
.enquire-form p {
  margin-bottom: 0;
}

.enquire-form__event input {
  margin-right: 0.2rem;
}

.enquire-form__event label {
  margin-right: 1rem;
}

.enquire-form input,
.enquire-form select,
.enquire-form button {
  color: #444;
  padding: 0.3rem 0.8rem;
  border: 1px solid #aaa;
  outline: none;
}

.enquire-form select {
  background: #efefef;
}
.enquire-form input:focus {
  border-color: blueviolet;
}

.enquire-form button {
  cursor: pointer;
  background: blueviolet;
  color: white;
}

.enquire-form button:hover {
  background: rgb(92, 20, 160);
}

.enquire-form .success {
  color: green;
}

.enquire-form .fail {
  color: red;
}