.cooperation-form__wrapper {
  padding: 0px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 360px;
  max-width: 1280px;
  width: 100%;
}
.cooperation-form__heading {
  max-width: 750px;
  color: var(--main-text-color);
  text-align: center;
  font-family: 'PHGTL';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.cooperation-form__form {
  display: flex;
  min-width: 360px;
  max-width: 750px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.cooperation-form__input,
.cooperation-form__textarea {
  display: flex;
  height: 60px;
  padding: 6px 8px 16px 16px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 2px;
  border: none;
  background: #51575b;
  color: var(--main-text-color);
  font-family: 'TT Fors';
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;

}
.cooperation-form__input::placeholder,
.cooperation-form__textarea::placeholder {
  color: var(--main-text-color);
  font-family: 'TT Fors';
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.cooperation-form__textarea {
  height: 88px;
  resize: none;
}

.cooperation-form__submit {
  cursor: pointer;
  display: flex;
  width: 324px;
  height: 40px;
  padding: 6px 8px 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  border: none;
  background: #ff006e;
  color: var(--main-text-color);
  text-align: center;
  font-family: 'TT Autonomous';
  font-size: 18px;
  text-transform: uppercase;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.cooperation-form__submit:disabled {
  background: #51575b;
}

@media screen and (min-width: 1200px) {
  .cooperation-form__heading {
    max-width: 1280px;
    font-size: 48px;
  }
}
 /* @media screen and (min-width: 1024px) {
   .textarea {
     height: 60px;
   }
 } */

.cooperation-form__sendingAnimation {
  animation: EmailSendInputSpinner 2s linear infinite;
}

@keyframes EmailSendInputSpinner {
  0% {
    background: hsl(204, 6%, 14%)
      linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        #ff006e 45%,
        #ff006e 55%,
        transparent 85%,
        transparent 100%
      );
    background-position: -1000px 0;
    background-repeat: no-repeat;
  }

  50% {
    background: hsl(204, 6%, 40%)
      linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        #ff006e 45%,
        #ff006e 55%,
        transparent 85%,
        transparent 100%
      );
    background-position: 0px 0;
    background-repeat: no-repeat;
  }

  100% {
    background: hsl(204, 6%, 14%)
      linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        #ff006e 45%,
        #ff006e 55%,
        transparent 85%,
        transparent 100%
      );
    background-position: 1000px 0;
    background-repeat: no-repeat;
  }
}
