*{
    font-family: sans-serif;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box
}

body{
    background-image: url(../gerador_de_senhas/imagens/cadeado.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #18181b;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#container {
    background-color: #fff;
    align-items: center;
    flex-direction: column;
}
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    text-align: center;
    color: #fff;
    box-shadow: #000;

}

.container-input{
    max-width: 400px;
    margin: 14px 0;

}
.container-input span{
    color: #fff;
    font-size: 22px;

}
.slider{
    width: 100%;
    border-radius: 5px;
    background: #dfdfdf;
    height: 18px;
    outline: none;
    margin-top: 8px;

}
.button-cta{
    height: 40px;
    background-color: #4b0082;
    border:0;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 40px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;


}
.container-password{
    max-width: 400px;
    margin: 14px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;

}
.title{
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin-top: 24px;
    margin-bottom: 8px;

}
.password{
    height: 60px;
    background-color: rgba(0,0,0 0.40);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #000;
    border: 1px solid #313131;
    transition: transform 0.5s;
    border-radius: 10px;

}
.password:hover{
    transform: scale(1.05);

}
.tooltip{
    color: #fff;
    position: relative;
    top: 20px;
    padding: 6px 8px;
    background: rgb(15,15,15);
    text-align: center;
    font-size: 20px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.hide{
    display: none;
}
.container-password:hover .tooltip{
    visibility: visible;
    bottom: 50px;
    opacity: 1;
}