.section-login{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login{
    padding: 4em;
    border-radius: 2.8em;
    width: 350px;

}

.menu-left-logo{
    margin-bottom: 1.5em;
}

.menu-left-logo img{
    width: 30px;
    height: 30px;
}
.menu-left-logo span{
    font-size: 18px;
}
.menu-left-logo small {
    color: var(--greyText);
    font-size: 9px;
}
.container-password{
    position: relative;
}
.btn-show-password{
    width: 17px;
    height: 17px;
    background: transparent;
    border: none;
    background-image: url('../images/show.svg');
    position: absolute;
    right: .5em;
    top: .6em;
    cursor: pointer;
}
.btn-show-password.hidden{
    background-image: url('../images/hidden.svg');
}
.lds-ring{
    margin-top: 1em;
    display: none;
}


@media screen and (min-width:  768px){

    .login{
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    }
  
}
