﻿/*estilos login*/

.bgLogin-background {
    background-image: url('/assets/login/images/fondo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /*width: 100vw;*/
    height: 100%;
}

.espCard {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.cardLogin {
    width: 100%;
    border: none;
    border-radius: 20px;
    background: #6418FF;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.33);
    -webkit-box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.33);
}

.imgCoete {
    position: relative;
    width: 100%;
    align-items:center;
}
    .imgCoete .logoLogin {
        width: 250px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding-top:20px;
    }

    .imgCoete .imgcoete {
        position: absolute;
        bottom: 0;
        padding-bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
    }


.cardlogin_r {
    position: absolute;
    background: #ffffff;
    border-radius: 0px 20px 20px 0px;
    top: 0;
    right: 0;
    height: 100%;
}

.cardlogin_l {
    position: fixed;
    background: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
}


.logoLogin_w {
    text-align: center;
    max-width: 250px;
}

.txtWelcome h3 {
    font-size: 40px;
    font-weight: 600;
}
.lblforml{
    color:#ffffff;
    font-size:12px;
}
.txtversion {
    text-align: center;
    color: #ffffff;
    opacity:0.5;
}
.btn_login {
    background: #F2CB01;
    border: none;
    color: #000000;
    font-weight: bold;
    padding: 10px 50px;
    border-radius: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

    .btn_login:hover {
        background: #333333;
        color: #ffffff;
        /*box-shadow: 0 0 20px #6fc5ff50;
        transform: scale(1.1);*/
    }