@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
:root{
    --branco: white;
    --cor-de-fundo: #3d3b3b; 
--fundo-senha: #757373; 
--fundo-texto: #757373;
--borda: #000000; 
--fonte-principal: 'Libertinus Serif';
}
body{
    background-color: var(--cor-de-fundo);
    color: var(--branco);
}
.conteudo-titulo{
    text-align: center;
}
*{
    font-weight: 400;
}
.conteudo-senha{
    margin-top: 80px;
    background-color: var(--fundo-senha);
    padding: 24px;
    border-bottom: 6px solid var(--borda);
}
#campo-senha{
    background-color: var(--fundo-senha);
    border: none;
    color: var(--branco);
    font-family: var(--fonte-principal);
    font-size: 40px;
    width: 70%;
}
.titulo-principal{
    font-family: var(--fonte-principal);
    font-size: 32px;
}
.titulo-secundario{
    font-size: 24px;
}
img{
    width: 10%;
    height: 10%;
}
#campo-senha:focus{
    outline: none;
}
.parametro{
    background-color: var(--fundo-texto);
    border: 2px solid var(--branco);
    margin-top: 32px;
    padding: 24px;
}
.parametro-titulo{
    font-family: var(--fonte-principal);
    font-size: 28px;
}
.parametro-senha-titulo{
    font-size: 24px;
}
.parametro-coluna-senha{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.parametro-senha{
    width: 50%;
    margin: 0 auto;
}
.parametro-senha-botoes{
    display: flex;
    justify-content: center;
}
.parametro-senha-botao{
    background-color: var(--fundo-texto);
    color: var(--branco);
    border: 2px solid var(--borda);
    padding: 24px;
    font-size: 24px;
    cursor: pointer;
}
.parametro-senha-texto{
    padding: 24px;
    border: 2px solid var(--borda);
    border-bottom: 2px solid var(--borda);
    margin: 0;
}
label{
    font-size: 20px;
}
@media screen and (min-width: 768px){
    .parametro-coluna-senha{
        flex-direction: row;
    }
    }
    .checkbox{
        width: 20px;
        height: 20px;
        cursor: pointer;
    }
    .barra{
        background-color: var(--fundo-senha);
        height: 30px;
        width: 100%;
    }
    .fraca{
        height: 30px;
        width: 25%;
        background-color: #820000;
        position: relative;
        bottom: 30px;
    }
    .media{
        height: 30px;
        width: 50%;
        background-color: #aca602;
        bottom: 30px;
    }
    .forte{
        height: 30px;
        width: 100%;
        background-color: #01920b;
        bottom: 30px;
    }
    .parametro-senha-textos{
        display: flex;
        justify-content: space-between;
    }