/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 04 2025 | 05:48:27 */
.inline-forms12 p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

/* Make all inputs the same width */
.inline-forms12 input[type="text"],
.inline-forms12 input[type="tel"],
.inline-forms12 select {
  flex: 1 1 250px; /* all fields grow equally */
  max-width: 300px; /* same width for all */
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Submit button styling */
.inline-forms12 input[type="submit"] {
  background-color: #c2185b;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  flex: 0 0 auto; /* button stays its own size */
}

.inline-forms12 input[type="submit"]:hover {
  background-color: #a2154c;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .inline-forms12 p {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-forms12 input[type="text"],
  .inline-forms12 input[type="tel"],
  .inline-forms12 select,
  .inline-forms12 input[type="submit"] {
    width: 100%;
    max-width: none;
  }
}
