.container-login,
.container-view {
    position: static;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../resources/images/fondo1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.container-login .body-login,
.container-view .body-view {
    max-width: 400px;
    width: 90%;
    height: max-content;
    min-height: 300px;
    padding: 20px 25px;
    background-color: white;
    border-radius: 10px;
    position: relative;
}

.body-login .logo-loguin,
.body-view .logo-view {
    width: 80%;
    position: absolute;
    height: 80px;
    background-image: url(../resources/images/logo-siacomex.png);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position-x: center;
    background-position-y: center;
    box-shadow: 0px 2px 10px 1px #4a4a4a;
    border-radius: 10px;
    background-color: white;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}

.body-view .logo-view {}

.container-view .body-view {}

.m-auto {
    display: block;
    margin: auto;
}

.content-absolute {
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    width: 90%;
    margin: auto;
    height: max-content;
}

.btn-install {
    position: absolute;
    bottom: 0;
    right: 0;
}

.container-btnout,
.container-btnchangepwd {
    width: 80px;
    right: 0;
    position: absolute;
    top: 0;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: black;
    min-width: max-content;
}

.container-btnchangepwd {
    top: 60px;
}

.container-btnout button,
.container-btnchangepwd button {
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 1;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

.container-btnout button:focus,
.container-btnchangepwd button:focus {
    outline: none;
}

.container-btnout button img,
.container-btnchangepwd button img {
    height: 60%;
}

ul.validate {
    list-style: none;
    padding: 0px;
    margin-top: 5px;
}

ul.validate li {
    font-size: 12px;
}

ul.validate li .glyphicon-remove {
    color: red;
}

ul.validate li .glyphicon-ok {
    color: rgb(17, 166, 17);
    font-size: 9px;
}