.newsletter {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 40px 30px;
    color: #fff;
    background-color: #E91D63;
    border-radius: 0 0 6px 6px; 

    .title {
        font-size: 24px;
        font-weight: bold;
    }

    .sub-title {
        font-size: 18px;
        font-weight: bold;
    }

    .content {
        font-size: 14px;
    }

    #newsletter-form {
        margin-top: 20px;
    }

    #newsletter-response {
        display: none;
        margin: 10px 0 0 0;
        font-weight: bold;
    }

    .mail-input {
        display: flex;
        align-items: center;
        background-color: white;
        border-radius: 6px;
        padding: 5px 5px 5px 20px;
    }

    .mail-input #nl-email {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        color: #000000;
    }

    .mail-input #nl-email::placeholder {
        color: #000000;
        opacity: 1;
    }

    .mail-input #newsletter-btn {
        background: transparent;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
        color: #000000;
        cursor: pointer;
        white-space: nowrap;
        position: relative;
    }

    .mail-input #newsletter-btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 40%;
        background-color: #000000;
    }
}

@media screen and (max-width: 992px) {
    .newsletter {
        max-width: 100% !important;
        border-radius: 6px;
        padding: 20px;

        .title {
            font-size: 18px;
        }
    
        .sub-title {
            font-size: 15px;
        }
    
        .content {
            font-size: 13px;
        }

        .mail-input #newsletter-btn {
            padding: 5px 10px;
        }
    }
}