.bde-shortcode .form-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 3rem;
  padding-block: 2rem;
}
.bde-shortcode .form-container .col-1, .bde-shortcode .form-container .col-2 {
  width: calc(50% - 1.5rem);
}
.bde-shortcode .form-group {
  margin-bottom: 15px;
  text-align: left;
}
.bde-shortcode .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #FFC7C7;
}
.bde-shortcode .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.bde-shortcode .submit-btn,
.bde-shortcode .btn {
  background: #272727;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.bde-shortcode .submit-btn:hover,
.bde-shortcode .btn:hover {
  background: #1a1a1a;
  color: #FFC7C7;
}
.bde-shortcode #loadingSpinner {
  display: none;
  margin-top: 10px;
}
.bde-shortcode .hidden {
  display: none;
}
.bde-shortcode #optionalForm {
  display: none;
  margin-top: 20px;
  color: white;
}
.bde-shortcode #optionalForm .form-group {
  margin-bottom: 10px;
}
.bde-shortcode #response-wrapper {
  padding-top: 1.1rem;
}
.bde-shortcode #response-wrapper .btn {
  margin-top: 10px;
}
.bde-shortcode .typing-animation {
  display: inline-block;
  min-width: 1em;
}

#response-wrapper {
  font-size: 18px;
}
#response-wrapper .btn {
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
#leadForm,
#optionalForm {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  display: none;
}
#leadForm.active,
#optionalForm.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
#leadForm:not(.active),
#optionalForm:not(.active) {
  animation: fadeOut 0.3s ease forwards;
}

#response-wrapper button {
  display: none;
}
#response-wrapper button.active {
  display: inline-flex;
  margin-top: 20px;
}
#response-wrapper button:not(.active) {
  display: none;
}

#response-wrapper {
  display: block !important;
  opacity: 1 !important;
}

/*# sourceMappingURL=app.css.map */
