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

body{
    background-color: #1c191a;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo{
    max-width: 600px;
    height: 150px;
}

.container-input{

    max-width: 500px;
    margin-bottom: 14px;


}

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

/*.slider{
    -webkit-appearance: none;
    width: 100%;
    border-radius: 5px;
    background-color: rgb(177, 177, 177);
    height: 18px;
    outline: none;
    margin-top: 8px;
}*/

.valor{
    padding: 3px 6px;
    border: 3px solid #464646;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 10px;  
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin: 20px 0;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background: #4995db;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
  }

  .button-cta{
    background: #dadada;
    height: 40px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 18px;
}


.container-password{
    max-width: 480px;
    margin: 14px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.title{
    text-align: center;
    color: aliceblue;
    font-size: 28px;
    margin-bottom: 24px;
}


.password{
    height: 60px;
    background-color: #4b4346;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    border: 1px solid #000000;
    transition: transform 0.5s;

}

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

.tooltip{
    color: aliceblue;
    position: relative;
    top: 20px;
    padding: 6px 8px;
    background: #000000;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

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

.hide{
    display: none;
}