@import url('https://fonts.googleapis.com/css2?family=Trispace:wght@300;400;500;700&display=swap');

*{
    padding: 0;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Trispace';
    text-decoration: none;
}

body {

    background-color: rgb(1, 1, 32);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    max-width: 55.97vh;
    margin-bottom: 2.9vh;    
}

.container-input{
    max-width: 44.77vh;
    margin: 14px 0;
}

.container-input span {
    color: #eee;
    font-size: 1.5vh;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    border-radius: .9vh;
    background: #697283;    
    height: 1.5vh;
    outline: none;
    margin-top: 1.3vh;
}

.button-cta {
    height: 3.90vh;
    background-color: #1385e2;
    border: 0;
    border-radius: .6vh;
    cursor: pointer;
    margin-top: 3.80vh;
    color: #fff;
    font-weight: bold;
    font-size: 1.6vh;
}

.container-password {
    max-width: 44.77vh;
    margin: 2.5vh 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;    
}

.title {
    text-align: center;
    color: #fff;
    font-size: 1.4vh;
    margin-top: 1.9vh;
    margin-bottom: 1.9vh;
}

.password{
    height: 4.5vh;
    color: #fff;
    background-color: rgba(83, 83, 83, 0.5);
    border-radius: 0.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.2vh solid #929292;
    transition: transform 0.5s;
}

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

.tooltip {
    color: #fff;
    position: relative;
    top: 2.1vh;
    padding:  0.6vh 0.7vh;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 1.2vh;
    border-radius: 0.9vh;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.hide {
    display: none;
}

.container-password:hover .tooltip {
    visibility: visible;
    bottom: 4.66vh;
    opacity: 1;
}
    