/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 18 2026 | 04:41:52 */
/* Container row */
.cf7-row {
  display: flex;
  gap: 15px; /* space between fields */
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Each column (input field) */
.cf7-col {
  flex: 1 1 30%;
}

/* Style input fields */
.cf7-col input[type="text"],
.cf7-col input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 14px;
}

/* Submit button wrapper */
.cf7-submit-wrapper {
  text-align: center;
}

/* Style the submit button */
.wpcf7 input[type="submit"] {
  background: #af4dff!important;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
}

/* Kill all default CF7 alignment issues */
.wpcf7 form p {
  width: 100%;
  margin: 0;
  text-align: center !important;
}

/* Force wrapper to center */
.cf7-submit-wrapper {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
}

/* Fix button alignment */
.cf7-submit-wrapper input[type="submit"] {
  margin: 0 auto;
  display: block;
}