@import './style-global.css';

.contenedor{
    width: 100%;
    height: 100vh;
    display:flex;
    align-items: center;
    justify-content: center;
    
}
body {
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 50%, #FFF 50%);
}

:root{
    --color-primary: #3366FF;
}

.text-primario{
    color: var(--color-primary);
}
.btnLogin{
    background-color: var(--color-primary);
    color: #fff;
    font-weight:500;
    height:56px;
}
.btnLogin:hover{
    box-shadow: 5px 5px 10px #ccc;
    color: #fff;
}

.box-login{
    width: 25%;
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.link-custom a, .link-custom span{
    text-decoration: none;
    font-weight: 500;
}
.pointer{
    cursor: pointer;
}

/* CUSTOM ICON CLOSE MODAL */
.close {
    color: #037aca !important;
    cursor: pointer;
    opacity: 1 !important;
    position: absolute;
    top: -14px;
    right: -14px;
}

/*ESTILOS RECOVER PASSWORD*/

.icon-view-pass2{
    position: relative;
    top: 6px;
    z-index: 5;
    cursor: pointer;
}
.logoLogin, .logoEmpresa{
    width: 100px;
}
/* RESPONSIVE DESIGN */
/* RESPONSIVE DESIGN */
@media screen and (max-width: 992px){
    .box-login{
        min-width: 80%;
        padding: 5px !important;
    }
}

