/* Industrial Blueprint Background Pattern */
body.post-password-required {
    background-color: #f4f6f8;
    background-image: 
        linear-gradient(rgba(110, 193, 228, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 193, 228, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
}

.custom-password-wrapper-e384ff56 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70vh;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.custom-password-container-e384ff56 {
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #006593;
}

.custom-password-logo-e384ff56 img {
    max-width: 200px;
    height: auto;
    margin-bottom: 28px;
}

.custom-password-title-e384ff56 {
    font-size: 26px;
    color: #333333;
    margin: 0 0 12px;
    font-weight: 600;
}

.custom-password-desc-e384ff56 {
    font-size: 15px;
    color: #7a7a7a;
    margin: 0 0 32px;
    line-height: 1.6;
}

.custom-password-input-group-e384ff56 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-password-input-group-e384ff56 input[type="password"] {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid #ececec;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #54595F;
    background-color: #fbfbfb;
}

.custom-password-input-group-e384ff56 input[type="password"]::placeholder {
    color: #b0b0b0;
}

.custom-password-input-group-e384ff56 input[type="password"]:focus {
    border-color: #006593;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 101, 147, 0.1);
}

.custom-password-input-group-e384ff56 button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #006593;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-password-input-group-e384ff56 button:hover {
    background-color: #6ec1e4;
}

/* Responsive adjustments */
@media (min-width: 576px) {
    .custom-password-input-group-e384ff56 {
        flex-direction: row;
    }
    .custom-password-input-group-e384ff56 input[type="password"] {
        flex: 1;
    }
    .custom-password-input-group-e384ff56 button {
        width: auto;
        padding: 16px 28px;
    }
}
