.subscribe-form {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin: 1rem 0;
  @media screen and (max-width: 605px) {
    align-items: center;
  }
  @media screen and (max-width: 490px) {
    flex-direction: column;
  }
}

.subscribe-form-email {
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-basis: 60%;
  font-size: 16px;
  padding: 1.4rem 2rem;
  line-height: 1.2rem;
  @media screen and (max-width: 605px) {
    width: 100%;
  }
  @media screen and (max-width: 490px) {
    padding: 1.4rem 1rem;
  }
}

.subscribe-form-failure {
  color: #a50203;
  font-weight: bold;
}

.subscribe-form-success {
  color: #495057;
  font-weight: bold;
}
