.newsletterSection {
    background: url("../../../../public/images/svg/abstract/cta-abstract.svg") no-repeat, #1F2125;
    background-position: center bottom;
    background-size: contain;
}

.input+div {
    position: relative;
    z-index: 1;
    bottom: 1px;
    left: 0;
    width: 0%;
    height: 1px;
}

.input:focus+div {
    position: relative;
    animation: slideIn 600ms ease-out forwards;
}

@keyframes slideIn {
    from {
        width: 0%;
        background: var(--color-secondary);
    }

    to {
        width: 100%;
        background: white;
    }
}