html,
body {
    height: 100%;
    margin: 0;
/*    background-color: #f5f4f1;*/
    font-family: 'Inter', sans-serif;
}

.background {
    padding: 0px;
    height: 100%;
}

.backstretch-item {
    left: 0px!important;
    top: 0px!important;
}

.recover-password:hover {
    color: #333333;
}

.barra-lateral {
    background-color: white;
    height: 100%;
    -webkit-box-shadow: 0 0 10px -2px #d9d9d9;
    box-shadow: 0 0 10px -2px #d9d9d9;
    padding: 30px 70px;
    display: flex;
    flex-direction: column;
}



.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25%;
    margin-bottom: 15px;
}

.logo img {
    width: 50%;
}

.login-btn {
    background-color: #06AFAC;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.login-btn:hover {
    background-color: #333333;
    color: white;
    box-shadow: 0 0 10px -2px #d9d9d9;
    -webkit-box-shadow: 0 0 10px -2px #d9d9d9;
}

.forgotten-password {
    font-weight: bold;
    color: #86BBBA;
    font-size: 12px;
}

.recover-password {
    color: #86BBBA;
    font-size: 12px;
    font-weight: 400;
}

.input-box-user {
    width: 100%;
    position: relative;
}

.input-box-user::after {
    position: absolute;
    top: 13px;
    left: 15px;
    content: '\f007';
    font-family: 'fontAwesome';
    font-size: 20px;
    color: #94B6B7;
}

.input-user {
    color: #94B6B7;
    background-color: #E4FBFA;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 10px 15px 45px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
    box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
    border:none!important;
}

.input-user::placeholder {
    font-size: 13px;
    color: #94B6B7;
}

.input-box-password {
    width: 100%;
    position: relative;
}

.input-box-password::after {
    position: absolute;
    top: 13px;
    left: 15px;
    content: '\f023';
    font-family: 'fontAwesome';
    font-size: 20px;
    color: #94B6B7;
}

.input-password {
    color: #94B6B7;
    background-color: #E4FBFA;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 10px 15px 45px;
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
    box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.1);
    border:none!important;
    border-radius: 10px;
}

.input-password::placeholder {
    font-size: 13px;
    color: #94B6B7;

}

.input-user:focus {
    box-shadow: 0 0 0px 2px #94B6B7 !important;
    outline: none!important;
}

.input-password:focus {
    box-shadow: 0 0 0px 2px #94B6B7 !important;
    outline: none!important;
}

.caja-texto-color {
    background-color: #EAE6F3;
    border-radius: 10px;
    color: #7459AC;
    font-size: 12px;
    padding: 10px 35px;
    margin-top: 30px;
}

.caja-texto-color a {
    color: #7459AC !important;
}

.caja-texto-color hr {
    border-top: 2px solid #7459AC;
}

#login-error {
    color: #891b1b;
    background-color: #fce8e8;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 13px;
    border-radius: 5px;
}

.show-password {
    font-size: 13px;
    position: relative;
    display: flex;
    text-align: right;
    justify-content: space-between;
    align-items: center;
    width: 65px;
    margin-bottom: 5px;
    color: #94B6B7;
}

.show-password:hover {
    cursor: pointer;
    text-decoration: underline;
}

.footer {
    height: 20px;
    position: absolute;
    width: 100%;
    background-color: hsla(0, 100%, 100%, .7);
    bottom: 0;
    font-size: 13px;
    text-align: center;
}

.footer a {
    color: black;
    text-decoration: underline;
}

#form {
    margin: 0;
}


@media (max-width:767px) {
    .barra-lateral {
        padding: 30px 40px;
    }

    .logo {
        height: 20%;
    }
}

.fa.fa-exclamation-circle {
    animation: fade 1s infinite;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}