/**
 * Password Protection Block Styles
 */

/* Editor placeholder */
.password-protection-placeholder {
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px dashed #888;
    font-style: italic;
    text-align: center;
}

/* Frontend password form */
.site-password-protection {
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.site-password-protection h3 {
    margin-top: 0;
    color: #333;
}

.site-password-protection label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.site-password-protection input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 15px;
}

.site-password-protection input[type="submit"] {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.site-password-protection input[type="submit"]:hover {
    background-color: #005d8c;
}