.subscribe {
  width: 100%;
}
.subscribe p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.subscribe-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}
.subscribe form input {
  padding: 20px;
  color: rgb(97, 100, 97);
  border: none;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.3);
}
.subscribe form input:focus {
  background-color: rgb(197, 222, 190);
}
.subscribe__btn {
  padding: 9px 11px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 0;
  max-width: 64px;
  height: 64px;
}
.subscribe__text {
  font-size: 12px;
  max-width: 342px;
}
.subscribe__text a {
  text-decoration: underline;
}

.header-subscribe {
  padding: 40px 0;
  margin-top: auto;
}
.header-subscribe .subscribe form input {
  border: 1px solid rgb(122, 122, 122);
}
.header-subscribe .subscribe form input::-moz-placeholder {
  color: rgb(122, 122, 122);
  font-weight: 300;
  font-size: 16px;
}
.header-subscribe .subscribe form input::placeholder {
  color: rgb(122, 122, 122);
  font-weight: 300;
  font-size: 16px;
}

@media (min-width: 576px) {
  .subscribe-wrapper {
    max-width: 474px;
  }
  .subscribe__text {
    font-size: 14px;
  }
}