.background-purple-semi-light {
  background: #D7BBDA;
}
#bloc-newsletter {
  display: flex;
  padding: 60px 32px 80px;
  flex-direction: column;
  align-items: center;
  @media (min-width: 768px) {
    padding: 60px 0 80px;
  }
  > div {
    max-width : 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    > div {

    }
  }
  h2 {
    color: #000;
    text-align: center;
    font-family: "Patua One", Arial, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    margin-bottom: 15px;
  }
  p {
    color: #000;
    text-align: center;
    font-family: myriad-pro, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: 150%;
  }
  form {
    all: unset;
    display: flex;
    width: 100%;
    padding: 6px 6px 6px 20px;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    background: #FFF;
    @media (min-width: 768px) {
      width: 360px;
    }
  }
  label.form-label {
    top: 7px;
    left: 8px;
  }
  input[class^=form-] {
    min-height: 35px;
    border: none !important;
    box-shadow: none;
    padding: 4px 8px;
    &:focus + p + label,
    &:not(:placeholder-shown) + p + label{
      top: -9px;
    }
  }
  .form-error {
    position: absolute;
    left: 0;
    bottom: -30px;
    color: #ec1625;
    font-size: 12px;
    min-height: auto !important;
  }
  .button {
    all: unset;
    display: flex;
    height: 40px;
    padding: 0 20px;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    background: #000;
    cursor: pointer;
    span {
      color: #FFF;
      font-family: myriad-pro-semi-bold, Arial, sans-serif;
      font-size: 14px;
      font-style: normal;
      line-height: normal;
    }
  }
}