.elementor-572 .elementor-element.elementor-element-a08c49b{--display:flex;--min-height:100vh;}@media(min-width:768px){.elementor-572 .elementor-element.elementor-element-a08c49b{--width:100%;}}/* Start custom CSS for container, class: .elementor-element-a08c49b *//* Container Principal */
.post-password-form {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 400px;
    padding: 20px; /* Evita colar nas bordas no mobile */
    box-sizing: border-box;
}

/* Ícone de Cadeado em SVG (Garante que apareça em qualquer dispositivo) */
.post-password-form::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-color: #17448C;
    opacity: 0.5;
    margin-bottom: 20px;
    /* Máscara do ícone de cadeado */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18,8H17V6A5,5,0,0,0,7,6V8H6a3,3,0,0,0-3,3V21a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V11A3,3,0,0,0,18,8ZM9,6a3,3,0,0,1,6,0V8H9ZM19,21a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H18a1,1,0,0,1,1,1Z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18,8H17V6A5,5,0,0,0,7,6V8H6a3,3,0,0,0-3,3V21a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V11A3,3,0,0,0,18,8ZM9,6a3,3,0,0,1,6,0V8H9ZM19,21a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H18a1,1,0,0,1,1,1Z'/%3E%3C/svg%3E") no-repeat center;
}

/* Texto de instrução */
.post-password-form p {
    font-size: 18px !important;
    color: #17448C;
    line-height: 1.5 !important;
    max-width: 320px !important; /* Estreitado para forçar a quebra de linha que você queria */
    margin: 0 auto 30px auto !important;
}

/* Label e Input */
.post-password-form label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #17448C;
    font-weight: bold;
    width: 100%;
}

.post-password-form input[type="password"] {
    height: 48px !important;
    width: 100% !important;
    max-width: 280px !important; /* Limita o tamanho no desktop e mobile */
    border: 1px solid #17448C !important;
    border-radius: 50px !important;
    padding: 0 20px !important;
    text-align: center;
    box-sizing: border-box !important;
}

/* Botão Entrar */
.post-password-form input[type="submit"] {
    background-color: #17448C !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 0 50px !important;
    height: 48px !important;
    line-height: 48px !important;
    font-weight: bold !important;
    border: none !important;
    margin-top: 15px !important;
    cursor: pointer;
    width: auto !important;
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .post-password-form p {
        font-size: 16px !important;
    }
}/* End custom CSS */