/* ===============================================
ARQUIVO DE ESTILO - PÁGINA DE LOGIN ADMIN
===============================================
*/
body.login-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--cor-fundo-site);
}
.login-page .header-interno {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%; 
}
.painel-login {
    max-width: 350px;
    width: 100%;
}
.password-wrapper {
    position: relative; 
}
.password-wrapper #senha {
    padding: 12px 40px 12px 12px;
}
.password-wrapper #toggleSenha {
    position: absolute;
    right: 15px; 
    bottom: 12px; 
    cursor: pointer;
    font-style: normal;
    user-select: none;
    font-size: 1.1em;
    color: #555;
}