    .content_login,
    .content_register {
        position: fixed;
        max-width: 300px;
        width: 100%;
        min-height: 0px;
        background: #fff;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all .4s ease;
        padding: 20px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        border-radius: 5px;
        z-index: -2;
        opacity: 0;
    }

.l_cerrar_login{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 21px;
    cursor: pointer;
}

.lcerrarcuenta{
    position: relative;
    left: 90%;
    top: 10px;
    font-size: 21px;
    cursor: pointer;
}

    .content_register {
        max-width: 500px;
        width: 100%;
        max-height: 88vh;
        overflow: auto;
        
    }

    .content_perfil {
            position: fixed;
            max-width:240px; 
            width: 100%;
            min-height: 0px;
            background: #fff;
            top: 50%;
            left: calc(100% - 240px);
            transform: translateY(-50%);
            transition: all .4s ease;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: flex-start;
            border-radius: 5px;
            z-index: -2;
            opacity: 0;
        }



    .content_login.activo,
    .content_register.activo {
        min-height: 100px;
        z-index: 11;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
        opacity: 1;
    }

    .content_perfil.activo {
        top: 260px;
        min-height: 100px;
        z-index: 11;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
        opacity: 1;
    }
    

.content_register input, .content_register select{
    height: 30px;
    font-size: 17px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 12px;
    
}

.content_register select{
    padding: 0px 10px;
    color: rgba(0, 0, 0, .7);
    
}





.l_btn_login{
    position: relative;
    width: 100%;
    height: 45px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    cursor: pointer;
    background: #1058a8;
    line-height: 45px;
    color: aliceblue;
    font-size: 25px;
    font-weight: 800;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}


.alerta_login{
    position: relative:;
    height: 40px;
    width: 100%;
    background: red;
    margin: 10px 0;
    border-radius: 8px;
    display: none;
    transition: all .5s ease;
    padding: 0px 10px;
}

.alerta_login.activo{
    display: block;
    
}

.h_error_login{
    position: absolute;
    width: calc(100% - 10px);
    height: 40px;
    line-height: 40px;
    color: aliceblue;
    font-size: 21px;
    font-weight: 700;
 }

.recuperar{
    position: relative;
    color: dodgerblue;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%;
}

.recuperar:hover{
    text-decoration: underline;
}

.l_menu_perfil{
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 19px;
    font-weight: 700;
    transition: all .5s ease;
    cursor: pointer;
    padding: 12px;
    z-index: 2;
    
}

.l_menu_perfil:hover{
    background: #FEB811;
    color: aliceblue;
}


.l_teminos_registros{
    position: relative;
    font-size: 1.2em;
    color: rgba(0, 0, 0, .8);
    font-weight: 700;
}

.div_acpetar_terminos_registros, .div_acpetar_terminos_registros_procesar{
    position: relative;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .6);
    margin-right: 10px;
}

.div_acpetar_terminos_registros::before, .div_acpetar_terminos_registros_procesar::before{
    content: '';
    top: -4px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-top: 0px solid transparent;
    border-left: 0px solid green;
    border-bottom: 0px solid green;
    border-right: 0px solid transparent;
    position: absolute;
    transition: all .3s ease;
}

.div_acpetar_terminos_registros.activo::before, .div_acpetar_terminos_registros_procesar.activo::before{
    width: 20px;
    height: 6px;
    transform: rotate(-45deg);
    border-top: 3px solid transparent;
    border-left: 3px solid green;
    border-bottom: 3px solid green;
    border-right: 3px solid transparent;
}

.l_btn_register{
    display: block;
}

.l_btn_register.activo{
    display: block;
}

.div_olivide_contra{
    position: fixed;
    width: 100%;
    max-width: 600px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 8px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .4);
    display: flex;
    flex-wrap: wrap;
    transition: all .5s ease;
    opacity: 0;
    z-index: -3;
}

.div_olivide_contra.activo{
    opacity: 1;
    z-index: 11;
}

.i_recu_contra{
    position: relative;
    width: 65%;
    height: 40px;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 0, 0, .4);
    border-radius: 8px 0px 0px 8px;
    outline: none;
    font-size: 19px;
    font-weight: 700;
    padding: 10px;
    
}

.btn_recuperar{
    position: relative;
    width: 60px;
    height: 40px;
    background: #832D92;
    color: aliceblue;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    top: 50%;
    left: 12%;
    border: 1px solid #832D92;
    transform: translateY(-50%);
    border-radius: 0px 8px 8px 0px;
    cursor: pointer;
    
}

.h_recovery{
    position: absolute;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    font-size: 30px;
}

.s_aviso{
    position: relative;
    width: 70%;
    height: 45px;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 9px;
    text-align: center;
    color: aliceblue;
    line-height: 45px;
    font-size: 26px;
    display: none;
}

.s_aviso.activo{
    display: block;
}

.cerrar_recu{
    position: absolute;
    right: 13px;
    top: 10px;
    font-size: 25px;
    transition: all .4s ease;
    color: rgba(0, 0, 0, .4);
    z-index: 1;
    cursor: pointer;
}

.cerrar_recu:hover{
    color: rgba(0, 0, 0, .8);
}











