/* ===== Contact Form 7 Styling ===== */

/* Form wrapper */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #000;
}

.wpcf7-form .required {
  color: #b00; /* red asterisk */
  margin-left: 2px;
}

/* Inputs & Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  max-width: 100%; /* Prevent stretching beyond container */
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 5px; /* Reduced spacing below textarea */
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 10px; /* Reduced spacing below input */
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #4a90e2;
  outline: none;
  background: #fff;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background-color: #3b7e0f; /* green */
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: block;
  margin: 18px auto 0 auto; /* Center the button horizontally, add top margin */
}

.wpcf7 input[type="submit"]:hover {
  background-color: #2d5f0b; /* darker green */
}

/* Error messages */
.wpcf7-not-valid-tip {
  color: #b00;
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 12px;
}

.wpcf7-response-output {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
}
