/*
Theme Name: Jevelin Child
Description: Child theme for Jevelin theme
Author: Shufflehound
Author URI: http://shufflehound.com
Template: jevelin
*/

/* Add your custom CSS below */

.request-quote-form {
  font-family: 'Open Sans', sans-serif;
  color: #2b2b2b;
}

.request-quote-form h3 {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.request-quote-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.request-quote-form .form-row.two-columns .form-group {
  flex: 1;
  min-width: 200px;
}

.request-quote-form input[type="text"],
.request-quote-form input[type="email"],
.request-quote-form input[type="tel"],
.request-quote-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 2px;
}

.request-quote-form textarea {
  min-height: 120px;
  resize: vertical;
}



.request-quote-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
}

.request-quote-form input[type="checkbox"] {
  accent-color: #7d1c1c; /* optional color match */
}

.request-quote-form .submit-btn {
  text-align: left;
}

.request-quote-form input[type="submit"] {
  background-color: #7d1c1c;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.request-quote-form input[type="submit"]:hover {
  background-color: #5a1111;
}

.wpcf7 form label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  color: #222;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.wpcf7 input[type="submit"] {
  background-color: #0073aa;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 15px;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #005f8d;
}

