.wc-cat-protect-password-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.wc-cat-protect-password-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px;
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.wc-cat-protect-logo {
    margin-bottom: 30px;
}

.wc-cat-protect-logo img {
    max-width: 150px;
    height: auto;
}

.wc-cat-protect-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.wc-cat-protect-message {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.wc-cat-protect-error {
    background: #fee;
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    text-align: left;
}

.wc-cat-protect-error p {
    margin: 0;
    color: #c0392b;
    font-size: 14px;
}

.wc-cat-protect-form {
    margin-bottom: 20px;
}

.wc-cat-protect-field {
    margin-bottom: 25px;
    text-align: left;
}

.wc-cat-protect-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #34495e;
    font-size: 14px;
}

.wc-cat-protect-field input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wc-cat-protect-field input[type="password"]:focus {
    outline: none;
    border-color: var(--wc-cat-protect-primary, #0073aa);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.wc-cat-protect-button {
    width: 100%;
    padding: 14px 30px;
    background-color: var(--wc-cat-protect-primary, #0073aa);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc-cat-protect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.wc-cat-protect-button:active {
    transform: translateY(0);
}

.wc-cat-protect-footer {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ecf0f1;
}

.wc-cat-protect-footer a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.wc-cat-protect-footer a:hover {
    color: var(--wc-cat-protect-primary, #0073aa);
}

@media (max-width: 600px) {
    .wc-cat-protect-password-container {
        padding: 30px 20px;
    }
    
    .wc-cat-protect-title {
        font-size: 24px;
    }
}
