/* Password Protected Pro — Lock Screen Styles */

*, *::before, *::after { box-sizing: border-box; }

body.ppp-lock-screen {
    margin: 0;
    padding: 0;
    background: #feebe2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppp-container {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppp-box {
    background: #FFF1EA;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
}

.ppp-logo img {
    display: block;
max-width: fit-content;
margin: 0 auto 24px;
}

.ppp-site-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 24px;
}

.ppp-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.ppp-above-text,
.ppp-below-text {
    color: #555;
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.ppp-below-text { margin-top: 16px; margin-bottom: 0; }

.ppp-form { display: flex; flex-direction: column; gap: 16px; }

.ppp-field { display: flex; flex-direction: column; gap: 6px; }

.ppp-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.ppp-input-wrap { position: relative; display: flex; align-items: center; }

.ppp-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: border-color .2s;
}

.ppp-input:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,.1); }

.ppp-toggle-pw {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.ppp-toggle-pw svg { width: 18px; height: 18px; }

.ppp-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.ppp-captcha { display: flex; justify-content: center; }

.ppp-submit {
    background: #2c2826;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
    width: 100%;
}

.ppp-submit:hover  { background: #2c2826; }
.ppp-submit:active { transform: scale(.98); }

.ppp-request-link { text-align: center; font-size: 13px; }
.ppp-request-link a ,a{ color: #2c2826; text-decoration: none; }
.ppp-request-link a:hover { text-decoration: underline; }

/* Partial content lock */
.ppp-partial-lock {
    background: #f8f9fa;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    margin: 16px 0;
}

.ppp-lock-icon {
    font-size: 36px !important;
    color: #6b7280;
    display: block;
    margin-bottom: 12px;
}

.ppp-partial-label { font-weight: 600; color: #374151; margin: 0 0 16px; }

.ppp-partial-form { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.ppp-partial-form input {
    padding: 9px 12px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.ppp-partial-form input:focus { border-color: #4f46e5; }

/* Responsive */
@media (max-width: 480px) {
    .ppp-box { padding: 32px 24px; }
}
