*{
    font-family: sans-serif;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #18181B;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.logo{
    max-width: 200px;
    margin-bottom: 24px;
}
.container-input{
    max-width: 300px;
    text-align: center;
    margin: 20px 0;
}

.container-input span{
    color: #fff;
    font-size: 15px;
}

.slider{
    -webkit-appearance: none;
    width: 100%;
    border-radius: 4px;
    background: #424242;
    height: 18px;
    outline: none;
    margin-top: 10px;
}

.btn-cta{
    height: 40px;
    background-color: #5d009b;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 40px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.container-password{
    max-width: 300px;
    margin: 14px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.title{
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin: 24px 0 8px 0;
}

.password{
    height: 60px;
    background-color: rgba(0, 0, 0, .5); 
    border-radius: 4px; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid #313131;
    transition: transform 0.5s;
}

.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: 16px;
    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;
}


.container-input p{
    color: #fff;
    font-size: 10px;
}