#ppp-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9998;
    pointer-events: none;
}

#ppp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #fff;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

#ppp-popup h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
    color: #333;
}

.password_form {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#ppp-popup input[type="password"] {
    padding: 12px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #EECBAD;
    font-size: 1rem;
    margin-bottom: 20px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
}

#ppp-popup input[type="password"]:focus {
    border-bottom: 2px solid #333;
}

#ppp-popup button {
    background-color: #EECBAD;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

#ppp-popup button:hover {
    background-color: #EECBAD;
}

#ppp-popup .newsletter-hint {
    font-size: 1rem;
    color: #EECBAD;
    font-weight: 600;
    margin-top: 20px;
}

#ppp-popup .newsletter-hint > a {
color: #EECBAD !important;
}

#ppp-popup > a {
color: #EECBAD !important;
}
