*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif;
}

/* Main Overlay with Background Image */
#ppsas-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background-size: cover;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0.65;
}

/* Popup Box with Background Image */
#ppsas-popup {
    padding: 25px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.ppsas-popup-inner {
    text-align: center;
}

.ppsas-popup-title {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.ppsas-popup-description {
    margin-bottom: 20px;
    text-align: center;
}

.ppsas-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    border-width: 2px;
    border-color: #000;
    text-align: center;
}

.ppsas-input::placeholder {
    color: #000;
}

.ppsas-button {
    width: 100%;
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-style: solid;
    background-color: #000;
    font-size: 16px;
    color: #fff;
}

.ppsas-error {
    color: #ff0000;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.ppsas-logo {
    display: block;
    margin: 0 auto 15px;
    height: auto;
}