.elementor-2482 .elementor-element.elementor-element-699ceff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-699ceff *//* Center the form container */
.post-password-form {
    max-width: 400px; /* Set a max-width for the form */
    margin: 0 auto; /* Center the form */
    padding: 20px; /* Add some padding */
    text-align: center; /* Center the text inside the form */
    background-color: #f9f9f9; /* Optional: background color for better visibility */
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

/* Style the input field */
.post-password-form input[type="password"] {
    width: 100%; /* Make the password input take the full width */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style the submit button */
.post-password-form input[type="submit"] {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.post-password-form input[type="submit"]:hover {
    background-color: #005b8a;
}/* End custom CSS */