body{
	font-family: 'Quicksand', sans-serif;
	font-size:15px;
	font-weight:500;
}
a{

    transition: all .3s;
	-webkit-transition: all 0.3s;
}
::-webkit-scrollbar {
    width: 10px;
}
::-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 */
.logo{
    height: 150px !important;
}
.main-content-wrapper {
    width: 100%;
    height: 130vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.login-area {
    width: 100%;
    position: relative;
    background-color: rgba(228, 228, 228, 0.70);
	text-align:center;
	color: #fff;
	overflow-y: scroll;
    height: 100%;
}

.image-area {
    position: relative;
    width: 100%;
    background-image: url(../img/bg.jpg);
	background-size: cover;
    background-position: center;

}

.image-area.forgot-pass {
    background-image: url(../img/bg2.jpg);
}

.login-header {
padding: 60px 25px;
background-color: rgba(228, 228, 228, 0.80);
}
.login-content{
    margin-top: 100px;
}

h2.title {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.2;
		color: #fff;
}
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: #fff;
    border-radius: 6px;
    border: 0px;
    position: relative;
    transition: all .3s;
    -webkit-transition: all 0.3s;
    display: block;
    box-sizing: border-box;
	color:#000;
}

input.input-field::placeholder{
color: #484848;
}

input.input-field:focus {
    outline: none;
    border: 0px solid #bec8d2;
    background: #f7f7f7;
}

.form-group {
    display: block;
    width: 100%;
}

button.btn.btn-primary {
    width: 100%;
    padding: 14px 10px;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 6px;
    border: 0px;
    position: relative;
    transition: all .3s;
    -webkit-transition: all 0.3s;
    display: block;
    box-sizing: border-box;
    color:#575756;
    font-size: 15px;
    transition: all .3s;
}

button.btn.btn-primary:hover {
    background: #d9d9d9;
}

button.btn.btn-primary i {
    font-size: 16px;
    margin-left: 10px;
    color: #575756;
}
.login-bottom-links a.link {
    display: block;
    color: #000;
}
.login-bottom-links a.link:hover {
    color: #fff;
}
.login-bottom-links a.link i {
    margin-right: 10px;
    font-size: 14px;
}


@media (min-width: 1500px) {
	.login-area {
		width: 100%;
	}
}
@media (max-width: 1499px) {
	.login-area {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	.login-area {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.login-area {
		width: 100%;
	}
}
@media only screen and (max-width: 600px) {
	.login-area {
		width: 100%;
	}
}

.icon_login{
    float: right;
}
.btn_login{
    padding: 15px 30px !important;
    text-align: left;
    font-weight: 800;
}

.icon_text{
    width: 15%;
    padding: 16.3px 10px;
    background: #fff;
    border-radius: 6px;
    border: 0px;
    transition: all .3s;
    -webkit-transition: all 0.3s;
    box-sizing: border-box;
    color: #000;
    float: left;
    position: relative;
}
.input_field{
    width: 85%;
    padding: 14px 10px;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 6px;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border: 0px;
    transition: all .3s;
    -webkit-transition: all 0.3s;
    box-sizing: border-box;
    color: #000;
    float: left;   
}
.icon_text:before{
    content: "";
    background: black;
    position: absolute;
    bottom: 25%;
    right: 0;
    height: 45%;
    width: 1px;
}

.error_login{
    background-color: #434343;
}
