*{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;}
body{
    background-color: #07060b;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;}
.logo{
    max-width: 800px;
    margin-bottom: 24px;}
.container-input{
    max-width: 480px;
    margin: 14px 0px;}
.centralize{
    text-align: center;
    margin-bottom: 5px;}
.container-input span{
    color: #fff;
    font-size: 22px;}
.slider{
    widows: 100%;
    border-radius: 5px;
    background-color: #fff;
    height: 18px;
    outline: none;
    margin-top: 8px;}
.button-cta{
height: 40px;
background-color:  #2a5586;
border: 0;
border-radius: 4px;
cursor: pointer;
margin-top: 40px;
color: #fff;
font-weight: bold;
font-size: 1.1rem;}
.container-password{
    max-width: 480px;
    margin: 14px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;}
.title{
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    margin: 10px 0;}
.password{
    height: 60px;
    background-color: #4d5b6b;
    color: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease-in;}
.password:hover{
    transform: scale(1);}
.hide{
    display: none;}
.tooltip{
    color: black;
    position: relative;
    top: 20px;
    padding: 6px 8px;
    background-color: #b6b5b8;
    text-align: center;
    font-size: 1rem;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    font-weight: bolder;
    transition: all 0.5s ease-in-out;}
.container-password:hover .tooltip{
    visibility: visible;
    bottom: 50px;
    opacity: 1;}
