/* Force Elementor background overlays to show up live */
.elementor-background-overlay {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
/* Container Box - Makes it stand out on the page */
.post-password-form {
    background-color: #ffffff;
    border: 3px solid #2271b1; /* Vibrant border */
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 550px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Soft drop shadow */
    text-align: center;
}

/* Prompt Text - Large and readable */
.post-password-form p {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #1d2327 !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}

/* Label styling */
.post-password-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Input Field - Larger box with visible border */
.post-password-form input[type="password"] {
    width: 100%;
    max-width: 320px;
    padding: 14px 18px !important;
    font-size: 1.1rem !important;
    border: 2px solid #8c8f94 !important;
    border-radius: 6px !important;
    margin-bottom: 15px !important;
    outline: none;
}

.post-password-form input[type="password"]:focus {
    border-color: #2271b1 !important;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.3);
}

/* Submit Button - Bold, high-contrast button */
.post-password-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    background-color: #2271b1 !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.post-password-form input[type="submit"]:hover {
    background-color: #135e96 !important;
}
/* Force visible dark text inside the password field */
.post-password-form input[type="password"] {
    color: #000000 !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #000000 !important; /* Fixes WebKit/Safari font transparency */
}

/* Force visible placeholder text */
.post-password-form input[type="password"]::placeholder {
    color: #666666 !important;
    opacity: 1 !important;
}