body{
	font-family: 'Quicksand', sans-serif;
	font-size:15px;
	font-weight:500;
        
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
        
}
a{

    transition: all .3s;
	-webkit-transition: all 0.3s;
}
::-webkit-scrollbar {
    /*width: 8px;*/
    display:none;
}
::-webkit-scrollbar-track {
    background-color: #314252;
} /* the new scrollbar will have a flat appearance with the set background color */

::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2);
} /* this will style the thumb, ignoring the track */

::-webkit-scrollbar-button {
      background-color: #000;
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */

::-webkit-scrollbar-corner {
      background-color: black;
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */

.main-content-wrapper {
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.login-area {
    width: 100%;
    position: relative;
    box-shadow: 10px 0px 174px #926024;/*5px 0px 15px rgba(0, 0, 0, 0.2);*/
    background-color: #283542;/*#105997;*/
	text-align:center;
	padding-top: 0px;
	color: #fff;
	overflow-y: scroll;
}

.image-area {
    width: 0%;
    
	background-size: 100% 100%;
    background-position: center;
}
.image-area .img-title
{
    position: relative;
    top:120px;
    text-align: center;
    color: #f7f3e9;
    font-size: 45px;
    font-family: sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 0 #000000, 0px 0px 12px #ff0000;
}
.image-area.forgot-pass {
    background-image: url(../img/bg.jpg);
}

.login-header {
    padding: 30px 20px;
	margin-bottom: 0px;
        background-color: #ddfbec;/*#105997;*/
}
.login-content {
    padding: 40px 60px;
	margin-bottom: 0px;
        background-color: #66798a;/*#4579b3;*/
}

.login-header > .title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    display: none;
    padding-top: 10px;
}
h3.title{color:#ccc;}
form#form_login {
    max-width: 330px;
    margin: 0 auto;
}
input.input-field:focus {
	color: #000;
}
input.input-field {
    width: 100%;
    padding: 14px 10px;
    margin-bottom: 14px;
    background: #f2f3f5;
    border: 1px solid #0a2d4a;
    position: relative;
    transition: all .3s;
    -webkit-transition: all 0.3s;
    display: block;
    box-sizing: border-box;
	color:#000000;
}

input.input-field:focus {
    outline: none;
    border: 3px solid #1b0ec7;
    background: #f2f3f5;
}

.form-group {
    display: block;
    width: 100%;
}

button.btn.btn-primary {
    width: 100%;
    padding: 14px 10px;
    background: #435465; /*#105997;*/
    box-shadow: 6px 6px 12px #bac0c3;
    color: #d8cdcd;/*#ffffff;*/
    border: 1px solid #c7c7c7;
    margin-bottom: 30px;
		font-size: 20px;
		font-weight: 500;
}
button.btn.btn-primary:hover {
    
    background: #485765; /*#105997;*/
    box-shadow: 6px 6px 12px #000000;
    color: #ffffff;
    border: 1px solid #eeeeee;
    font-weight: 800;
}
button.btn.btn-primary i {
    font-size: 16px;
    margin-left: 10px;
    color: #b1c8d2;
}
.login-bottom-links a.link {
    display: block;
    color: #ffffff;
    font-size: 12px;
}
.login-bottom-links a.link:hover {
    color: #FFEB3B;
}
.login-bottom-links a.link i {
    margin-right: 10px;
    font-size: 12px;
}


@media (min-width: 1500px) {
	.login-area {
		width: 30%;
	}
	.image-area{
		width:70%
	}
}
@media (max-width: 1499px) {
	.login-area {
		width: 35%;
	}
	.image-area{
		width:65%
	}
}

@media only screen and (max-width: 991px) {
	.login-area {
		width: 40%;
	}
	.image-area{
		width:60%
	}
}

@media only screen and (max-width: 767px) {
	.login-area {
		width: 55%;
	}
	.image-area{
		width:45%
	}
	.login-header {
		padding: 10px 20px;
	}
        .login-content {
		padding: 20px 20px;
	}
       
}
@media only screen and (max-width: 600px) {
	.login-area {
		width: 100%;
	}
	.image-area{
		width:0%;
		display:none;
	}
        .login-header > .title {
           display: block;
        }
}
