/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2026 | 10:36:46 */
for/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Inline form wrapper */
.whole-form {
  display: flex!important;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

/* Input field wrapper */
.whole-form .field-space {
  flex: 1;
}

/* Input styling */
.whole-form input[type="text"],
.whole-form input[type="email"],
.whole-form input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 6px;
}

/* Submit button */
.whole-form .submit-btn {
  flex: 0 0 auto;
}

.whole-form input[type="submit"] {
  height: 50px;
  padding: 0 30px;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whole-form {
    flex-direction: column;
  }
}
