/* WP Category Password Modern Style */
.wpcp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999999 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wpcp-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    border-bottom: 4px solid #2563eb;
}

.wpcp-icon-wrapper {
    background-color: #eff6ff;
    color: #2563eb;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
}

.wpcp-card h3 {
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}

.wpcp-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.wpcp-form-group {
    text-align: left;
    margin-bottom: 24px;
}

.wpcp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.wpcp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.wpcp-input-wrapper i.prefix {
    position: absolute;
    left: 14px;
    color: #9ca3af;
}

.wpcp-input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    background-color: #f9fafb;
    transition: all 0.2s;
}

.wpcp-input-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wpcp-password-toggle {
    position: absolute;
    right: 14px;
    color: #9ca3af;
    cursor: pointer;
}

.wpcp-submit-btn {
    width: 100%;
    background-color: #1d4ed8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wpcp-submit-btn:hover {
    background-color: #1e40af;
}

.wpcp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    margin-top: 32px;
    transition: color 0.2s;
}

.wpcp-back-link:hover {
    color: #374151;
}

.wpcp-error {
    background-color: #fef2f2;
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}