#email-submission-form_newsletter {
  display: flex;
  flex-direction: column;

  label {
    font-size: 14px;
    color: rgba(185, 147, 10, 1) !important;
    padding-bottom: 7px;
    text-align: left;
  }

  .newsletter_inputs {

    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    .input_email {
      width: 100%;
      min-height: 36px;

      background-color: #FFF;
      border: 1px solid #7a7a7a;
      padding: 6px 5px 7px 10px;
      color: #7a7a7a;
    }

    .newsletter_checkbox label{
      font-size: .6rem!important;
      color: #000000!important;
    }

    .input_submit {
      width: 100%;

      border: 1px solid rgba(185, 147, 10, 1) !important;
      color: rgba(185, 147, 10, 1) !important;
      background-color: transparent;

      &:hover {
        background-color: rgba(185, 147, 10, 1) !important;
        color: #000000;
        border-color: #000000;
      }
    }
  }
}