/* Custom styling for WordPress password form */
.post-password-form {
    background: white;
    border: 2px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.post-password-form p {
    color: #d97706;
    font-weight: 500;
    margin-bottom: 1rem;
}

.post-password-form label {
    display: block;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-password-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #fbbf24;
    border-radius: 0.375rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: #fffbeb;
    color: #92400e;
}

.post-password-form input[type="password"]:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.post-password-form input[type="submit"] {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.post-password-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Animation for the password reveal box */
@keyframes pulse-amber {
    0%, 100% {
        background-color: #fef3c7;
    }
    50% {
        background-color: #fde68a;
    }
}

.password-reveal {
    animation: pulse-amber 2s ease-in-out infinite;
}