.contact-form-wrapper {
  max-width: 804px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 10px 16px 10px rgba(0, 0, 0, 0.05),
    0 10px 12px 0 rgba(0, 0, 0, 0.12);
  padding: 64px;
  background: var(--neutrals-4);
}
.contact-form-form {
  margin-top: 26px;
}
.contact-form-form input[type="email"],
.contact-form-form input[type="text"] {
  background: rgba(155, 165, 150, 0.1);
  width: 100%;
  display: block;
  border: unset;
  outline: unset;
  border-radius: 5px;
  height: 48px;
  padding: 12px;
}
.contact-form-form textarea {
  background: rgba(155, 165, 150, 0.1);
  width: 100%;
  display: block;
  border: unset;
  outline: unset;
  height: 180px;
  border-radius: 5px;
  padding: 12px;
}
.contact-form-form textarea::placeholder {
  opacity: 0.3;
}
.wpcf7 form > p:not(:last-of-type) {
  margin-bottom: 24px;
}
.wpcf7 label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  gap: 5px;
}
.wpcf7-acceptance .wpcf7-list-item input {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid #181616 !important;
  opacity: 0.4;
}
#page .wpcf7-submit {
  display: flex;
  margin: 0 auto;
}
.wpcf7 form p:last-of-type {
  position: relative;
}
.wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-form-wrapper {
    padding: 24px 15px;
    border-radius: 0;
  }
  .contact-form > div {
    padding-left: 0;
    padding-right: 0;
  }
}
