/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 03 2025 | 13:39:22 */
.inline-forms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

/* Each CF7 <p> should be inline-flex */
.inline-forms p {
  display: inline-flex !important;
  flex: 1 1 auto;
  margin: 0 !important;
  width: auto !important;
}

/* Inputs style */
.inline-forms input[type="text"],
.inline-forms input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
}

/* Submit button style */
.inline-forms input[type="submit"] {
  background: #e51c23;
  color: #fff;
  border: none;
  padding: 13px 40px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
  height: 48px; /* Make it same height as inputs */
}

.inline-forms input[type="submit"]:hover {
  background: #c4171d;
}

/* Make it responsive on mobile */
@media (max-width: 768px) {
  .inline-forms {
    flex-direction: column;
  }
  
  .inline-forms p {
    width: 100% !important;
    display: block !important;
  }
  
  .inline-forms input[type="submit"] {
    width: 100%;
  }
}
