.elementor-password-protected {
    position: relative;
    min-height: 200px;
}

.elementor-password-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.elementor-password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.elementor-password-input {
    padding: 12px 15px;
    border: 1px solid #000 !important;
    border-radius: 4px;
    font-size: 16px;
}

.elementor-password-submit {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.elementor-password-submit:hover {
    background: #45a049;
}

.elementor-password-error {
    color: #f44336;
    margin-top: 10px;
}