#newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.newsletter-popup-content {
    background: #fff;
    display: flex;
    position: relative;
    max-width: 600px;
    width: 90%;
}

.newsletter-popup-left {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-popup-left input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.newsletter-popup-left button {
    padding: 10px 15px;
    background-color: #ca416e;
    color: #fff;
    border: none;
    cursor: pointer;
}

.newsletter-popup-right {
    width: 200px;
}

.newsletter-popup-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
}