/* Container */
.event-registration-form-dropdown {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Header */
.event-registration-form-dropdown h2 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.event-registration-form-dropdown h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 30px;
  background-color: #ff7b00;
  border-radius: 2px;
}

/* Form */
.event-registration-form-dropdown .wpcf7-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Fields */
.event-registration-form-dropdown .form-field {
  margin-bottom: 20px;
}

.event-registration-form-dropdown label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.event-registration-form-dropdown input[type="text"],
.event-registration-form-dropdown input[type="email"],
.event-registration-form-dropdown input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
  transition: border 0.3s ease;
}

.event-registration-form-dropdown input[type="text"]:focus,
.event-registration-form-dropdown input[type="email"]:focus,
.event-registration-form-dropdown input[type="tel"]:focus {
  outline: none;
  border-color: #ff7b00;
  background: #fff;
}

/* Readonly */
.event-registration-form-dropdown input[readonly] {
  background: #fff4e5;
  color: #b35400;
  font-weight: 600;
  border-color: #ffc107;
}

/* Submit Button */
/* Matching Submit Button Style for Event Registration */
.event-registration-form-dropdown input[type="submit"] {
  background: linear-gradient(135deg, orange, #ffa026);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin: 20px auto 0 auto;
  box-sizing: border-box;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-registration-form-dropdown input[type="submit"]:hover {
  background: linear-gradient(135deg, orange, #ffa026);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.event-registration-form-dropdown input[type="submit"]:active {
  transform: translateY(0);
}

/* Loading State for Event Registration */
.event-registration-form-dropdown .wpcf7-form.submitting input[type="submit"] {
  background: #ffa026 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Message */
.event-registration-form-dropdown .wpcf7-response-output {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 8px;
  font-weight: 500;
}

/* Success */
.event-registration-form-dropdown .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
}

/* Error */
.event-registration-form-dropdown .wpcf7-validation-errors,
.event-registration-form-dropdown .wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
}
