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 */

.login-area {
    width: 100%;
    background-color: #fff;
	text-align:center;
	color: #fff;
    margin: auto;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
}

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

.login-header,.login-content {
	margin-bottom: 60px;
}

h2.title {
    font-weight: 300;
    font-size: 30px;
    line-height: 1.2;
		color: #34495e;
}
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: #f0f5ff;
    border: 1px solid #f0f5ff;
    position: relative;
    transition: all .3s;
    -webkit-transition: all 0.3s;
    display: block;
    box-sizing: border-box;
    font-weight: 800;
    color:#000000;
}

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

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

button.btn.btn-primary {
    width: 100%;
    padding: 14px 10px;
    background: #EF4D38;
    box-shadow: none;
    color: #ffffff;
    border: 1px solid #f29871;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}
button.btn.btn-primary i {
    font-size: 16px;
    margin-left: 10px;
    color: #b1c8d2;
}
.login-bottom-links a.link {
    display: block;
    color: #f39c12;
}
.login-bottom-links a.link:hover {
    color: #f1c40f;
}
.login-bottom-links a.link i {
    margin-right: 10px;
    font-size: 14px;
}