.propeller-form-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.82);
}

.propeller-form-group {
  margin-bottom: 18px;
}

.propeller-form-wrap label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.propeller-form-wrap input[type="text"],
.propeller-form-wrap input[type="tel"],
.propeller-form-wrap input[type="email"],
.propeller-form-wrap textarea {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: inherit;
  color: #1f1f1f;
  background: #ffffff;
}

.propeller-form-wrap input[type="text"],
.propeller-form-wrap input[type="tel"],
.propeller-form-wrap input[type="email"] {
  height: 36px;
}

.propeller-form-wrap textarea {
  min-height: 108px;
  resize: vertical;
}

.propeller-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 8px;
}

.propeller-checkbox-row input {
  margin-top: 5px;
  flex: 0 0 auto;
}

.propeller-checkbox-row label {
  margin: 0;
  line-height: 1.45;
}

.propeller-submit {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 20px;
  font-family: inherit;
  color: #ffffff;
  background: #2e4f2b;
  cursor: pointer;
}

.propeller-submit:hover {
  background: #263f24;
}

.propeller-submit[disabled] {
  opacity: 0.85;
  cursor: wait;
}

.propeller-submit-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: text-bottom;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: propeller-spin 0.8s linear infinite;
}

@keyframes propeller-spin {
  to {
    transform: rotate(360deg);
  }
}

#contactForm {
  transition: opacity 0.35s ease;
}

#contactForm.is-complete {
  opacity: 0;
  pointer-events: none;
}

.propeller-thankyou {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  width: 100%;
  box-sizing: border-box;
}

.propeller-form-wrap.is-complete-state .propeller-thankyou {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.propeller-thankyou h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.propeller-thankyou p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

#status {
  display: none;
}
