/** @author Clément Quenez **/
html{
    height: 100vh;
    width: 100vw;
}

*{
    margin: 0;
    padding: 0;
}

body{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.containerLogin{
    width: 100%!important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.rowLogin{
    width: 100%!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header{
    width: 100%!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-footer{
    display: flex;
    flex-direction: row;
    justify-content: center!important;
    align-items: center!important;
}

@media (max-width: 737px) {
    .card-footer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}