.pnp-container {
    max-width: 520px;
    margin: 60px auto;
    text-align: center;
    font-family: Georgia, serif;
}

.pnp-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.pnp-subtitle {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 25px;
}

.pnp-form {
    display: flex;
    background: #f2f2f2;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.pnp-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    margin: 0px !important;
    color: #000 !important;
    font-family: Georgia, serif
}

.pnp-form button {
    background: #1e1e1e;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    cursor: pointer;
}

.pnp-form button:hover {
    background: #000;
    color: #fff;
}

.pnp-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.pnp-accept {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pnp-accept input {
    width: 16px;
    height: 16px;
}

.pnp-accept a {
    color: #000;
    text-decoration: underline;
}

.pnp-recaptcha {
    margin-top: 15px;
}

#pnp-toast {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 10px 16px;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    z-index: 9999;
}

.pnp-container-thanks {
    display: block;
}

@media (max-width: 480px) {
    .pnp-form {
        flex-direction: column;
    }

    .pnp-form button {
        width: 100%;
        padding: 12px;
    }

    .pnp-container-thanks {
        display: block;
    }
}