.post-password-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 80px 15px;
}

.post-password-form p {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.post-password-form input:not(input[type='submit']) {
    height: 50px;
    width: 100%;
    border: 1px solid #B2BCC7;
    border-radius: 5px;
    background-color: #FFFFFF;

}

.post-password-form input:not(input[type='submit']):focus {
    border: 1px solid #B2BCC7 !important; 
}

.post-password-form label {
    color: #022738;
    font-family: Lato;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 500;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.post-password-form input[type='submit'] {
    margin-top: 40px;
    height: 51px;
    width: 190px;
    border-radius: 5px;
    color: white !important;
    background-color: #0ACC92 !important;
    font-family: "Lato";
    font-size: 16px !important;
    letter-spacing: 0;
    line-height: 27px;
    text-align: center;
    line-height: initial !important;
}

.img-lightbox {
    justify-content: center;
    align-items: center;
    pointer-events: all;
    background-color: rgba(0,0,0,.8);
    display: none;
    user-select: auto;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 9999;
    height: 100%;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.img-lightbox.displaying {
    display: flex;
}

.img-lightbox.opacity {
    opacity: 1;
}

.img-lightbox div {
    background-color: white;
    overflow-y: scroll;
    max-height: calc(100% - 100px);
    margin: 50px;
}

.img-lightbox img {
    width: auto;
}

.wp-block-image img {
    display: block;
}

.wp-block-image img:not(.lightbox-exclude) {
    cursor: zoom-in;
}