/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 29 2025 | 06:53:07 */
/* 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 */ 

/* Form container */
.form1 {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 15px;
}

/* Row and column behavior */
.form1 .row {
  display: flex;
  flex-wrap: wrap;
}

.form1 .col-md-12 {
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Input field wrapper */
.input1_wrapper {
  margin-bottom: 10px;
}

.input1_inner input[type="text"],
.input1_inner input[type="email"],
.input1_inner input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

/* Placeholder styling */
.input1_inner input::placeholder {
  color: #999;
  opacity: 1;
  font-weight: 400;
}

/* Input focus styling */
.input1_inner input:focus {
  border-color: #a68d5d;
  outline: none;
}

/* Submit Button Styling */
.wpcf7-submit {
  background-color: #a68d5d;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #8c774d;
}

/* Responsive */
@media (max-width: 576px) {
  .form1 {
    padding: 10px;
  }
}
