*{
    font-family: sans-serif;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

body {
    background-color: #8e8ea0;
    color: #000000;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: bold;
    padding: 10px;
}

.logo {
    max-width: 600px;
    margin-bottom: 10px;
    width: 8%;
}

.container-input, .container-password {
    max-width: 480px;
    margin: 14px 0;
    width: 90%;
    text-align: center;
}

.container-input span {
    color: #FFF;
    font-size: 22px;
}

.slider {
    appearance: none;
    width: 100%;
    border-radius: 5px;
    background: #dfdfdf;
    height: 18px;
    outline: none;
    margin-top: 8px;
}

.button-cta {
    height: 40px;
    background-color: #7b7b86;
    border: 0;
    border-radius: 4px;
    cursor: pointer; 
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.container-password {
    max-width: 480px;
    display: block;
    width: 10%;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
}

.title {
    color: #fff;
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 8px;
    text-align: center;
}

.password {
    height: 60px;
    width: auto;
    position: relative;
    background-color: rgba(0,0,0,0.40);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    padding: 10px 150px;
    transition: transform 0.5s;
    position: relative;
    right: 55px;
    margin-top: 10px;
}

.password:hover {
    transform:scale(1.05);
}   

.tooltip {
    color: #fff;
    width: 100%;
    position: relative;
    top: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    padding: 6px 8px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    justify-content: center;        
}

.hide {
    display: none;
}

#valor {
    color: #222222;
}

.container-password:hover .tooltip {
    visibility: visible;
    bottom: 50px;
    opacity: 1;
}

@media (max-width: 480px){
    body {
        font-size: 16px;
    }

    .logo {
        max-width: 600px;
        margin-bottom: 10px;
        width: 80px;
    }

    .password {
        font-size: 16px;
        padding: 8px;
        position: relative;
        right: 125px;
        padding: 10px 150px;
        display: flex;
        margin-top: 10px;
    }

    .button-cta {
        width: 100%;
        font-size: 16px;
    }

    .title{
        text-align: center;  
        margin: 0 auto;      
        width: 100%; 
        position: relative;
        right: 11px;
    }

    .tooltip {
        position: relative;
        right: 3px;
        display: flex;            
        justify-content: center;  
        align-items: center;      
        text-align: center;   
        visibility: visible; 
        opacity: 1;
        top: 0;
    }

}