/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 21 2025 | 10:26:27 */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.form-column {
  flex: 1;
  min-width: 200px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: none;
  border-radius:0!important;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
}

/* Make the last row span full width */
.full-width {
  flex: 1 1 100%;
}

/* Submit button style */
input[type="submit"] {
  display: block;
  width: 100%!important;
  background-color: #000;
  color: #fff;
  padding: 16px 0;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 0!important;
}

input[type="submit"]:hover {
  background-color: #333;
}
