* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial;
}
.escritorio {
    height: 100vh;
    min-height: 650px;
    width: 100%;
    background: url(../img/bg_login1.jpg) top left no-repeat;
    background-size: 100%;
}
nav {
    background: #0087ab;
    color: #fff !important;
    height: 65px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    display: flex;
}
nav ul li {
    display: inline;
}
.container {
    width: 75%;
    margin: auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.logo {
    height: 35px;
}
ul {
    margin: 0;
    padding: 0;
    font-size: 13px;
}
ul li a {
    color: #fff !important;
    text-decoration: none;
}
ul li {
    padding: 0 10px;
}
main {
    width: 100%;
}
.login-box {
    width: 340px;
    margin-top: 75px;
    margin-left: auto;
    border-radius: 3px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-right: 150px;
    background: rgba(255, 255, 255, 0.9);
}
.header-box img {
    width: 340px;
}
.body-box {
    width: 100%;
    height: 200px;
}
.container-controls {
    width: 220px;
    margin: 10px auto;
}
input {
    width: 100%;
    display: block;
    padding: 10px;
    height: 29px;
}
.container-controls label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
}
.body-box ul li a {
    text-decoration: underline !important;
    color: #0088ae !important;
}
.body-box ul {
    display: flex;
    align-items: center;
    list-style: none;
    flex-direction: column;
    justify-content: center;
}
.body-box button {
    width: 100%;
    height: 30px;
    background-color: #00addb;
    border-radius: 2px;
    color: #fff;
    font-weight: bold;
    border: 1px solid #00addb;
}
.escritorio footer {
    height: 166px;
    position: absolute;
    top: calc(100% - 166px);
    background: #fff;
}
.container-footer-text {
    display: flex;
    width: 75%;
    align-items: center;
    margin: auto;
}
.texto p {
    margin-bottom: 20px;
    font-size: 13px;
    color: #005abb;
}
.mobile-version {
    display: none;
    height: 100vh;
    min-height: 650px;
    background: url(../img/bck.png);
}
.header-ul-mobile {
    color: #000 !important;
}
.header-ul-mobile ul {
    display: flex;
    height: 47px;
    list-style: none;
}
.header-ul-mobile ul li {
    line-height: 47px;
    text-align: center;
}
.header-ul-mobile ul .title {
    width: calc(100% - 129px);
    background: #00addb;
    display: inline-block;
}
.title h1 {
    color: #fff;
    font-size: 16px;
}
.version-clasica {
    color: #fff;
    font-size: 12px;
}
.ui-icon {
    height: 19px;
    border-radius: 19px;
    width: 19px;
    display: inline-block;
    line-height: 22px;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
}
.ui-icon svg {
    height: 12px !important;
}
.logo-mobile-container {
    height: 84px;
    border-bottom: 1px solid #fff;
    text-align: center;
}
.logo-mobile-container img {
    position: relative;
    top: 13px;
}
.body-form-mobile {
    width: 345px;
    background: #f6f6f6;
    height: 169px;
    margin: 20px auto;
}
.body-form-mobile label {
    height: 42px;
    text-align: center;
    display: block;
    background: #00addb;
    line-height: 42px;
    color: #fff;
}
.body-form-mobile input {
    width: 316px;
    height: 48px;
    outline: none;
    padding: 10px;
    border: 1px solid silver;
    margin: 20px auto 10px auto;
}
.button-mobile {
    width: 101px;
    display: block;
    margin: auto;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: #007894;
    color: #fff;
}
.button-mobile * {
    vertical-align: middle;
}
.helper-mobile {
    width: 345px;
    text-align: center;
    margin: auto;
    padding: 10px 0;
    background: #f6f6f6;
}
.helper-mobile * a {
    font-size: 13px !important;
    color: #007894;
}
.helper-mobile * small {
    color: #00addb;
}
.footer-mobile {
    position: absolute;
    top: calc(100% - 50px);
    height: 50px;
    text-align: center;
    width: 100%;
    left: 0;
    background: linear-gradient(to bottom, #222, #111);
    padding: 5px;
    color: #fff !important;
}
.pagina-cargando {
    background: #00000088;
    z-index: 999;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    display: flex;
}
.alerta {
    width: 380px;
    background: #fff;
    border-radius: 5px;
    padding: 20px 10px;
    margin: 20px;
}
.alerta h1 {
    font-weight: lighter;
    text-align: center;
    font-size: 26px;
    color: #e56408;
}
.mensaje {
    font-size: 15px;
    border: 1px solid silver;
    margin: 20px auto;
    width: 90%;
    padding: 10px;
}
.to-valid {
    width: 90%;
    margin: 20px auto;
}
@media (max-width: 676px) {
    .escritorio {
        display: none;
    }
    .mobile-version {
        display: block !important;
    }
    
}
