/* =========================================
   PEARL VAULT GATE (BRUTE FORCE)
   ========================================= */

.post-password-form {
    max-width: 550px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #F4F4EF;
    border: 1px solid #D0EBE9;
    text-align: center;
}

/* TITLE */
.post-password-form::before {
    content: "The Holiday Vault";
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #347A80;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

/* TEXT */
.post-password-form p {
    font-family: 'Montserrat', sans-serif;
    color: #5e8c91;
    font-size: 15px;
    margin-bottom: 20px;
    display: block !important; /* Force paragraph to be a block */
}

/* LABEL - Make it a block so it takes up a full row */
.post-password-form label {
    display: block !important;
    width: 100% !important;
    font-size: 0 !important;
    line-height: 0;
    margin: 0 !important;
    float: none !important;
}

/* INPUT FIELD - The "Brick" Strategy */
.post-password-form input[type="password"] {
    display: block !important;       /* Be a block */
    width: 100% !important;          /* Take full width of container */
    max-width: 320px !important;     /* But stop at 320px */
    height: 50px !important;
    padding: 0 15px;
    border: 1px solid #347A80;
    background-color: #fff;
    margin: 0 auto 20px auto !important; /* Center it and push bottom down */
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px !important;
    letter-spacing: 4px;
    color: #333;
    outline: none;
    box-shadow: none;
    float: none !important;          /* Stop floating */
}

/* BUTTON - The Second "Brick" */
.post-password-form input[type="submit"] {
    display: block !important;       /* Be a block */
    width: 100% !important;          /* Take full width */
    max-width: 320px !important;     /* But stop at 320px */
    height: 50px !important;
    background-color: #347A80;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto !important;       /* Center it */
    float: none !important;          /* Stop floating */
    clear: both !important;          /* Clear anything above it */
}

.post-password-form input[type="submit"]:hover {
    background-color: #2a6266;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 122, 128, 0.2);
}