/* PASSWORD PROTECTED PAGE */

.post-password-form {
    max-width: 650px;
    margin: 80px auto;
    background: #ffffff;
    padding: 70px 50px;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(15,26,43,.08);
    border-top: 4px solid #52677D;
    text-align: center;
}

/* Custom Title */

.post-password-form::before {
    content: "Current Residents Login";
    display: block;
    font-family: "Merriweather", serif;
    font-size: 36px;
    font-weight: 700;
    color: #1C2E4A;
    margin-bottom: 20px;
}

/* Description Text */

.post-password-form p {
    font-family: "Source Sans 3", sans-serif;
    color: #596472;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Password Label */

.post-password-form label {
    display: block;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1C2E4A;
    margin-bottom: 15px;
}

/* Password Field */

.post-password-form input[type="password"] {
    width: 100%;
    max-width: 350px;
    padding: 14px 18px;
    border: 1px solid #BDC4D4;
    border-radius: 999px;
    font-size: 16px;
    margin: 10px auto 20px;
    display: block;
    background: #ffffff;
}

/* Password Field Focus */

.post-password-form input[type="password"]:focus {
    outline: none;
    border-color: #52677D;
    box-shadow: 0 0 0 3px rgba(82,103,125,.15);
}

/* Submit Button */

.post-password-form input[type="submit"] {
    background: #1C2E4A;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 30px;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

/* Button Hover */

.post-password-form input[type="submit"]:hover {
    background: #52677D;
    transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {

    .post-password-form {
        margin: 40px 20px;
        padding: 40px 25px;
    }

    .post-password-form::before {
        font-size: 28px;
    }

}