.contenedor_login{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
    .login{
        border: thin solid #e0e0e0;
        border-radius: 20px;
        height: 500px;
        width: 350px;
    }
        .login_logo{
            /*background-color: blueviolet;*/
            height: 70px;
            padding-top: 5px;
            text-align: center;
            width: 100%;
        }
            .login_logo img{
                max-height: 60px;
            }
        .login_titulo{
            /*background-color: bisque;*/
            color: #001683;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Open Sans', sans-serif;
            font-size: 20px;
            height: 50px;
            width: 100%;
        }
        .login_formulario{
            /*background-color: bisque;*/
            display: flex;
            justify-content: center;
            align-items: center;
            height: 330px;
            width: 100%;
        }
            #frmLogin{
                /*background-color: chartreuse;*/
                width: 280px;
            }
        .login_error{
            /*background-color: chartreuse;*/
            color: #cb4545;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: 300;
            height: 50px;
            padding: 0 20px;
            text-align: center;
            width: 100%;
        }