/* =========================================
   ZONA PROIBIDA — TELA DE SENHA
   Preto + Vermelho
   ========================================= */

.post-password-form {
    max-width: 430px;
    margin: 12vh auto;
    padding: 35px 30px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55);
    text-align: center;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Texto */
.post-password-form p {
    margin: 0;
    color: #d6d6d6;
    line-height: 1.6;
}

/* Destaque no primeiro texto */
.post-password-form p:first-child {
    margin-bottom: 25px;
}
/* Esconde todos os parágrafos */
.post-password-form p {
    font-size: 0 !important;
    margin: 0;
}

/* Mostra o texto só no primeiro parágrafo */
.post-password-form p:first-of-type::before {
    content: "Digite a senha para continuar.";
    display: block;
    font-size: 15px !important;
    color: #d6d6d6;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Campo de senha */
.post-password-form input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    margin-top: 10px;
    background: #151515;
    color: #fff;
    border: 1px solid #383838;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: 0.25s ease;
}

/* Foco no campo */
.post-password-form input[type="password"]:focus {
    border-color: #e50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.12);
}

/* Botão */
.post-password-form input[type="submit"] {
    width: 100%;
    padding: 13px 18px;
    margin-top: 15px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Hover */
.post-password-form input[type="submit"]:hover {
    background: #ff1724;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.25);
}

/* Clique */
.post-password-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Fundo da página */
body {
    background: #000 !important;
}

/* Celular */
@media (max-width: 600px) {
    .post-password-form {
        margin: 10vh 18px;
        padding: 28px 22px;
        border-radius: 15px;
    }
}