<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #fff !important;
}

.login.login-1 .login-signin,
.login.login-1 .login-signup,
.login.login-1 .login-forgot {
    display: none;
}

.login.login-1.login-signin-on .login-signup {
    display: none;
}

.login.login-1.login-signin-on .login-signin {
    display: block;
}

.login.login-1.login-signin-on .login-forgot {
    display: none;
}

.login.login-1.login-signup-on .login-signup {
    display: block;
}

.login.login-1.login-signup-on .login-signin {
    display: none;
}

.login.login-1.login-signup-on .login-forgot {
    display: none;
}

.login.login-1.login-forgot-on .login-signup {
    display: none;
}

.login.login-1.login-forgot-on .login-signin {
    display: none;
}

.login.login-1.login-forgot-on .login-forgot {
    display: block;
}

.grid-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100vh;
}

.item-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.images-login {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.item-login-left {
    position: relative;
}

.item-login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
    z-index: 1;
}

.container-text-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    margin: 0 auto;
    z-index: 2;
}

.container-text-banner h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.container-text-banner h3 {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    margin-top: 1rem;
}

.item-login-right {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.item-login-right::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -35px;
    width: 230px;
    height: 230px;
    /* background: url(../images/huellas.png); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
    transform: rotate(-38deg);
    z-index: -1;
}

@media (min-width: 992px) {
    .login.login-1 .login-aside {
        width: 100%;
        max-width: 600px;
    }
    .login.login-1 .login-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .login.login-1 .login-aside {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 991.98px) {
    .login.login-1 .login-form {
        width: 100%;
        max-width: 350px;
    }
    .container-text-banner h2 {
        color: #fff;
        font-size: 3rem;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .grid-login {
        grid-template-columns: 1fr;
    }
    .images-login {
        height: auto;
    }
    .item-login-right {
        height: 100vh;
    }
}

@media (max-width: 575.98px) {
    .login.login-1 .login-form {
        width: 100%;
        max-width: 100%;
    }
}

.btn-primary {
    color: #FFFFFF !important;
    background-color: #621889 !important;
    border-color: #621889 !important;
    font-size: 15px !important;
}
</pre></body></html>