.input-decoration {
  width: 100%;
  display: flex;
  padding: 10px 0;
  position: relative;

  &:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background-position: center center;
    background-size: cover;
    background-image: url("/assets/decorations/newsletter-line-secondary-ea59c060.svg")
  }

  &:focus-within {
    &:after {
      background-image: url("/assets/decorations/newsletter-line-white-7a0406fc.svg")
    }
  }

  input[type="text"], input[type="email"] {
    width: 100%;
    background-color: inherit;
    border: none;
    color: var(--color-secondary);
    font-size: var(--font-size-small);
    outline: none;

    &::placeholder {
      color: var(--color-secondary);
      opacity: 1;
    }

    &:-ms-input-placeholder {
      color: var(--color-secondary);
    }

    &::-ms-input-placeholder {
      color: var(--color-secondary);
    }
  }

  button {
    background-color: inherit;
    border: none;
    outline: none;

    svg {
      width: 26px;
      height: 100%;
      path {
        fill: var(--color-secondary);
      }

      &:hover {
        path {
          fill: var(--color-white);
        }
      }
    }
  }
}
