/* [project]/src/styles/QuoteForm.css [client] (css) */
.quote-form-section {
  z-index: 20;
  width: 100%;
  position: relative;
}

.quote-form-section .container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.floating-form {
  box-sizing: border-box;
  background-color: #fff;
  border: none;
  border-radius: 40px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px #00000014;
  padding: 40px 60px !important;
}

.floating-form:before {
  content: "";
  transform-origin: top;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(to right, #0000000a 1px, #0000 1px), linear-gradient(#0000000a 1px, #0000 1px);
  background-size: 58.5px 13px;
  width: 140%;
  height: 600px;
  position: absolute;
  top: -180px;
  left: -20%;
  transform: perspective(800px)rotateX(72deg);
}

.form-inner-container {
  z-index: 100;
  width: 100%;
  position: relative;
}

.form-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  display: flex;
}

.form-title {
  color: #54b248;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.form-subtitle {
  color: #1a1a1a;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-inputs {
  gap: 20px 15px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

.input-group {
  flex: 200px;
  margin: 0;
}

.input-group:nth-child(5) {
  flex: 2 300px;
}

.form-input {
  color: #1a1a1a;
  text-align: left;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #54b248;
  border-radius: 50px;
  outline: none;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  box-shadow: 0 4px 15px #0000000d;
}

.form-input:focus {
  border-color: #3d8b33;
  box-shadow: 0 4px 20px #54b24833;
}

.captcha-and-submit-group {
  flex-direction: column;
  flex: 2 320px;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.captcha-label {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 10px;
}

.actions-row {
  gap: 12px;
  width: 100%;
  display: flex;
}

.captcha-input {
  flex: none;
  width: 140px !important;
}

.form-submit {
  color: #fff;
  cursor: pointer;
  background-color: #54b248;
  border: none;
  border-radius: 50px;
  flex: 1;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 15px #54b24866;
}

.form-submit:hover {
  background-color: #429037;
  transform: translateY(-2px);
}

.form-footer-inline {
  color: #555;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  bottom: -25px;
  left: 10px;
}

.form-footer-inline a {
  color: #54b248;
  font-weight: 700;
}

.side-curve {
  z-index: 5;
  pointer-events: none;
  background-size: 100% 100%;
  width: 110px;
  position: absolute;
  top: -10px;
  bottom: -10px;
}

.left-curve {
  left: -5px;
}

.right-curve {
  right: 0;
}

.form-pattern-overlay {
  z-index: 6;
  pointer-events: none;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1072px) {
  .floating-form {
    padding: 40px 90px !important;
  }
}

@media (max-width: 1024px) {
  .quote-form-section .container {
    width: 95%;
  }

  .floating-form {
    padding: 30px 95px !important;
  }

  .form-inputs {
    gap: 15px 10px;
  }
}

@media (max-width: 768px) {
  .quote-form-section .container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
  }

  .floating-form {
    box-sizing: border-box;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 30px #0000001a;
    height: auto !important;
    min-height: auto !important;
    margin: 0 auto !important;
    padding: 25px 30px !important;
    display: block !important;
  }

  .form-inner-container {
    width: 100%;
    max-width: 100%;
  }

  .form-header {
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .form-title {
    white-space: normal;
    text-align: center;
    width: 100%;
    font-size: 21px;
  }

  .form-inputs {
    margin: 0;
    padding: 0;
    width: 100% !important;
    display: block !important;
  }

  .input-group {
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  .form-input {
    text-align: left;
    padding: 14px 18px;
    font-size: 15px;
  }

  .captcha-and-submit-group {
    margin-top: 25px;
    display: block !important;
  }

  .captcha-label {
    margin-bottom: 8px;
    margin-left: 10px;
    font-size: 13px;
    display: block;
    position: static;
  }

  .actions-row {
    flex-direction: column;
    gap: 12px;
  }

  .captcha-input {
    width: 100% !important;
  }

  .form-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }

  .form-footer-inline {
    text-align: center;
    margin-top: 20px;
    display: block;
    position: static;
  }

  .side-curve, .form-pattern-overlay, .floating-form:before {
    display: none !important;
  }
}

/*# sourceMappingURL=src_styles_QuoteForm_css_65f1660e._.single.css.map*/