#containerLogin {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.img-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.btn-custom-login {
    background-color: #4559d6;
    color: #FCFCFC;
}

@media screen and (min-width: 1024px) {
    .img-login {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: auto;
        min-width: 10%;
    }

    .form-control-user {
        width: 400px;
    }
}

@media screen and (max-width: 1130px) {
    .img-login {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: auto;
    }

    .form-control-user {
        width: 400px;
    }
}

@media screen and (max-width: 1024px) {
    .img-login {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 60%;
    }

    .form-control-user {
        width: 350px;
    }
}

@media screen and (max-width: 768px) {
    .img-login {
        display: none;
    }

    .form-control-user {
        width: 300px;
    }
}
