#login-body {     
    background-image: url(/static/img/bg-portal.jpg) !important;
    background-repeat:no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
}

.row.login-container {
    margin:0;
    width: 100%;
    height: 100%;
}

.login-left {
    transition: width 1s ease-out;
}
.cover {
    object-fit: cover;
}

.features-container {
    width: 100%;
    height: 100%;
    padding: 4%;
    margin: auto;
    color: snow;
    text-shadow: 0px 0px 1px rgb(150 150 150);
    background-color: #141414;
}

.logo-padword {
    padding: 50px 50px 50px 100px !important;
}

.login-right {
    color: #777;
    transition: width 1s ease-out;
    padding-left: 100px !important;
}

.login-right .login-text {
	color: #000;
	font-size: 0.9rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.login-right .login-text h1 {
	font-size: 2.2rem;
	font-weight: 600;
}

h4.title {
    font-size: 1.3rem;
    color: #505d65;
}
.form-container {
    /*width: 96%;*/
    width: 300px;
    padding: 20px 20px 05px 20px;
/*    margin: auto;*/
    margin-top: 1rem;
    background-color: #fff;
    border-radius: 5px;
    opacity: 0.95;
}

button.btn.btn-submit {
    background: #32baeb;
    font-size: 0.85rem;
    color: #ffffff;
    padding: 0.375rem 0.15rem;
    text-transform: uppercase;
}

button.btn.btn-submit:hover {
    background: #141414;
}
.banner {
    background: #fff;
    position: fixed;
    bottom: 0;
}


/****************************
    Mobile Style
****************************/

@media only screen and (max-width: 480px)
{
    #login-body {     
        background-image: url(/static/img/bg-portal-mb.jpg) !important;
        background-repeat:no-repeat;
        background-position: center;
        background-size: contain;
        position:fixed;
        top:0;
        width: 100%;
        height: auto;
    }
    .login-left {
        display: none;
    }
    .login-right {
        width: 100%;
	    padding-left: 20px !important;
    }
    .login-right .login-text {
        margin-top: -50px;
     }

    .form-container {
        height: 75%;
        height: 200px;
        width: 90%;
	    position:fixed;
    	bottom: 100px;
    }
    .logo-padword {
	    background-color: #ffffff;
    	padding: 20px !important;
    }
    .logo-padword img {
    }
    
}
                                                                        
