/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2026 | 10:50:14 */
/* Inline CF7 form container */
.cf7-inline-form {
  display: flex;
  gap: 15px;
  align-items: stretch;
  width: 100%;
}

/* Each field equal width */
.cf7-inline-form .cf7-field {
  flex: 1;
}

/* Inputs full width */
.cf7-inline-form input[type="text"],
.cf7-inline-form input[type="email"],
.cf7-inline-form input[type="tel"] {
  width: 100% !important;
  height: 50px;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Submit button FIX */
.cf7-inline-form .cf7-submit {
  flex: 0 0 140px; /* fixed button width */
}

.cf7-inline-form input[type="submit"] {
  width: 100% !important;
  height: 50px;
  padding: 0;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cf7-inline-form {
    flex-direction: column;
  }

  .cf7-inline-form .cf7-submit {
    flex: 1;
  }
}
