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

}

body{
    background:rgb(16, 16, 16);
    width: 100%;
    height: 100%;
    display: flex;
   
    align-items: center;
    flex-direction: column;
}


.logo{
    max-width: 800px;
    margin-bottom: -60px;
    
}

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

.container-input  span{
    color:white;
    font-size: 1em;

}



.slider{
    margin-top: 10px;
}


.button-cta{
    background-color:rgb(109, 21, 21) ;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    height: 50px;
    font-size: 2em;
    font-family: monospace;
}


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


.title{
    text-align: center;
    font-size: 15pt;
}

.password{
    height: 60px;
    background-color: rgba(71, 71, 71, 0.225);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(21, 149, 25);
    transition: transform 0.5s;
}

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

.tooltip{
    position: relative;
    border-radius: 10px;
    top: 20px;
    padding: 6px 8px;
    background: rgb(21, 149, 25);
    text-align: center;
    color: black;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
} 

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

.hide{
    display: none;
}

.dominio{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    
    
}


.dominio label{
    display: flex;
    align-items: center;
    display: contents;
    
    
    
}

