/* ==========================================================
   CONTACT FORM - DEVIS
   ========================================================== */

.cf7-devis .cf7-group {
  margin: 0 0 18px;
  padding: 16px;
  border: 3px solid #78B913;
  border-radius: 0;
}

.cf7-devis .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.cf7-devis .cf7-col.full {
  grid-column: 1 / -1;
}

.cf7-devis label,
.cf7-devis legend {
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
  color: #348019;
}

.cf7-devis input[type="text"],
.cf7-devis input[type="email"],
.cf7-devis input[type="tel"],
.cf7-devis input[type="number"],
.cf7-devis select,
.cf7-devis textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 0;
  border: 3px solid #78B913;
}

.cf7-devis input:focus,
.cf7-devis select:focus,
.cf7-devis textarea:focus {
  border-color: #78B913;
  outline: none;
  box-shadow: 0 0 0 2px rgba(120, 185, 19, 0.25);
}

.cf7-devis textarea {
  min-height: 140px;
}

.cf7-devis input[type="file"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 0;
  border: 3px solid #78B913;
  background: transparent;
  color: #348019;
}

.cf7-devis .cf7-actions {
  text-align: left;
}

.cf7-devis .cf7-actions input[type="submit"] {
  width: auto;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 0;
  border: 3px solid #78B913;
  background: transparent;
  color: #78B913;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cf7-devis .cf7-actions input[type="submit"]:hover {
  background: transparent;
  color: #78B913;
}

@media (max-width: 767px) {
  .cf7-devis .cf7-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   CONTACT FORM - CONTACT
   ========================================================== */

.cf7-contact .cf7-group {
  margin: 0 0 18px;
  padding: 16px;
  border: 3px solid #78B913;
  border-radius: 0;
}

.cf7-contact .cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.cf7-contact .cf7-col.full {
  grid-column: 1 / -1;
}

.cf7-contact label,
.cf7-contact legend {
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
  color: #348019;
}

.cf7-contact input[type="text"],
.cf7-contact input[type="email"],
.cf7-contact input[type="tel"],
.cf7-contact input[type="number"],
.cf7-contact select,
.cf7-contact textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 0;
  border: 3px solid #78B913;
}

.cf7-contact textarea {
  min-height: 140px;
}

.cf7-contact input:focus,
.cf7-contact select:focus,
.cf7-contact textarea:focus {
  border-color: #78B913;
  outline: none;
  box-shadow: 0 0 0 2px rgba(120, 185, 19, 0.25);
}

.cf7-contact .cf7-actions {
  text-align: left;
}

.cf7-contact .cf7-actions input[type="submit"] {
  width: auto;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 0;
  border: 3px solid #78B913;
  background: transparent;
  color: #78B913;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cf7-contact .cf7-actions input[type="submit"]:hover {
  background: transparent;
  color: #78B913;
}

@media (max-width: 767px) {
  .cf7-contact .cf7-row {
    grid-template-columns: 1fr;
  }
}
