@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:wght@400;700&display=swap');
:root{
    --branco: white;
    --cor-de-fundo: #00162E;
    --fundo-senha: #00244D;
    --fundo-texto: #001E40;
    --borda: #0075FF;
    --roboto-mono: 'Roboto Mono', monospace;
    --roboto:'Roboto', sans-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: 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(--roboto-mono);
    font-size: 40px;
    width: 70%;
}
.titulo-principal{
    font-family: var(--roboto-mono);
    font-size: 32px;
}
.titulo-secundario{
    font-size: 24px;
}
#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(--roboto-mono);
    font-size: 28px;
}
.parametro-senha-titulo{
    font-size: 24px;
}
.parametro-coluna-senha{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (min-width: 768px) {
.parametro-coluna-senha{
flex-direction: row;
    
    }
    }
.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-top: 2px solid var(--borda);
    border-bottom: 2px solid var(--borda);
    margin: 0;
}
label{
    font-size: 20px;
}
.checkbox{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.barra{
    background-color: var(--fundo-senha);
    height: 30px;
    width: 100%;
}
.fraca{
    height: 30px;
    width: 25%;
    background-color: #E71B32;
    position: relative;
    bottom: 30px;
}
.parametro-senha-textos{
    display: flex;
    justify-content: space-between;
}
.media{
    height: 30px;
    width: 50%;
    background-color: #faf408;
    position: relative;
    bottom: 30px;
}
.forte{
    height: 30px;
    width: 100%;
    background-color: #00ff85;
    position: relative;
    bottom: 30px;
}