html, body{
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 16px;
}

body{
    width: 100%;
    min-height: 100vh;
    background-image: url("../images/bg-login.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

body:before{
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 105, 155, .8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.login-form{
    overflow: hidden;
    border-radius: 10px;
    display: flex;  
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.login-form > .banner-login{
    display: flex;
    align-items: center;
    background: #fff;
    border-right: 1px dashed #bcbcbc;
}

.login-form > .banner-login > img{
    width: 450px;
    padding-left: 50px;
    padding-right: 50px;
}

.login-form > form{
    background: #fff;
    width: 350px;
    padding: 40px;
}

.login-form > form > .logo-header{
    display: flex;
    margin-bottom: 40px;
}

.login-form > form > .logo-header > img{
    width: 40px;
    flex-shrink: 0;
    margin-right: 15px;
}

.login-form > form > .logo-header > .text-logo > h3{
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.login-form > form > .logo-header > .text-logo > span{
    color: #777;
}

.login-form > form .form-control{
    border-radius: 6px;
    padding: 11px 15px;
    border: 0;
    background: #f5f5f5;
    border: 1px solid #e9e9e9;
    transition: .35s ease-in-out;
}

.login-form > form .form-control:focus{
    box-shadow: none;
    border-color: #5fab84;
    background: #f8f8f8;
}

.login-form > form .btn{
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    padding: 9px 22px;
    border: 0;
    background: #5E90FF;    
    transition: .35s ease-in-out;
}

.login-form > form .btn:hover{
    background: #509d8f;
}

@media(max-width: 880px){
    body{
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo,
    .app-title,
    .login-form{
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0);
    }

    .logo{
        margin-bottom: 20px;
    }

    .app-title{
        display: none;
    }

    .login-form{
        width: 400px;
        flex-direction: column;
    }

    .login-form > .banner-login{
        border-right: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #bcbcbc;
    }

    .login-form > .banner-login > img,
    .login-form > form{
        width: 100%;
    }

    .login-form > form{
        padding: 30px;
    }

    .login-form > form > .logo-header{
        margin-bottom: 30px;
    }

    .login-form > form > .logo-header > img{
        align-self: start;
    }

    .login-form > form > .logo-header > .text-logo > h3{
        font-size: 24px;
    }

    .login-form > form .btn{
        display: block;
        width: 100%;
    }
}

@media(max-width: 575px){
    body{
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
    }

    .logo{
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .logo > img{
        position: relative;
        top: 5px;
    }

    .login-form{
        width: 100%;
    }

    .login-form > form > .logo-header > .text-logo > span{
        font-size: 12px;
    }
}