.wrap-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wrap-form .item input,
.wrap-form .item textarea {
  color: #1d2939;
  border: none;
  background-color: #d0d5dd;
  font-size: 16px;
  font-weight: normal;
  outline: none;
  border-radius: 8px;
  background: #ffff;
  line-height: 1.3;
  min-height: 36px;
  padding: 20px 16px 20px 16px;
}

.wrap-form .item textarea {
  max-height: 160px;
}

.wrap-form .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wrap-form .item p {
  margin-bottom: 0px;
}

.wrap-form .btn-form {
  width: auto;
  font-size: 15px;
  height: auto;
  line-height: normal;
  text-align: center;
  background: #2c2c2c;
  color: #ffffff;
  font-weight: normal;
  border-radius: 8px;
  padding: 18px 41px 18px 41px;
  box-shadow: 0 1px 1px #eeeeee;
  transition: all 0.5s ease;
  border: none;
  position: relative;
}
.wrap-form .btn-form:hover {
  background: #e2001a;
  color: #ffffff;
}

.submitting .btn-form::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  animation: loader 0.7s linear infinite;
  border-width: 0.10417rem;
  border-style: solid;
  border-color: #fff;
  border-top-color: transparent;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
}

@keyframes loader {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 567px) {
  .wrap-form .wrap {
    flex-wrap: wrap;
    gap: 32px;
  }
}
