/* Fullscreen overlay for the popup */
.cpp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Transparent black with 60% opacity */
    backdrop-filter: blur(10px); /* Gaussian blur for background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* Content box in the center of the screen */
.cpp-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    width: 100%;
}

/* Style for the form input */
.cpp-popup-content input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Style for the submit button */
.cpp-popup-content button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

/* Button hover effect */
.cpp-popup-content button:hover {
    background-color: #005d8c;
}

