/* -------------------------------------------------------

	Description: Web 2.0 Login Form
	Version: 1.0
	Author: Anli Zaimi
	Author URI: http://azmind.com

------------------------------------------------------- */


/* ------- This is the CSS Reset ------- */

/*html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, 
abbr, acronym, address, big, cite, code, del,
dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr,
th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}*/

/* ------- HTML5 display-role reset for older browsers ------- */
@import url('https://fonts.googleapis.com/css?family=Roboto');
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	/*line-height: 1;*/
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
#container table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ------- Remove Chrome's border around active fields ------- */

*:focus {
	outline: none;
}

/* ------- Disable background and border for input fields ------- */

/*#container input {
	background: transparent;
	border: 0;
}*/



/* --------------------------------------------------------------- */

/* ------- Body ------- */

body {
	/*background: #eeeeee url(images/bg.jpg) top left repeat;*/
	background-color: #ebf1f4;
	font-family: 'Roboto'
}


/* ------- Container ------- */

/*#container{
	margin: auto;
	margin-top: 180px;
	width: 524px;
	height: 262px;
	text-align: left;
	font-family: Verdana, Arial;
	font-weight: normal;

	color: #ffffff;
}*/
#container{
	width: 390px;
	position: absolute;
	left: 50%;
	margin-left: -200px;
	background: rgb(255, 255, 255);
	border-radius: 0px;
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);
	height: 450px;
	padding: 25px 30px;
	color: rgb(25, 34, 43);
	top:50%;
	margin-top: -225px;
	border-radius: 10px;
}

.img_logo{
	height: 70px;
	width: auto;
}

.row_logo{

}
.welcome{
	font-size: 20px;
	font-weight: normal;
	line-height: 40px;
}

.log_in_av{
	font-size: 16px;
	font-weight: normal;
	line-height: 40px;
	margin-bottom: 10px;
}


.email_password_title{
	font-size: 16px;
	font-weight: bold;
	height: 28px;
	line-height: 28px;
}

#form_login .form-control{
	font-size: 16px;
	font-weight: normal;
	height: 48px;
}

button.btn-login{
	background: #1171bb;
	border-radius: 4px;
	border: 0px;
}

.btn-login{
	height: 48px;
	font-size: 16px;
	width: 126px;
}



.row_forgot_pwd{
	font-size: 16px;
	font-weight: bold;
}

.row_forgot_pwd a{
	color: #1171bb;
}


/* ------- Login Form ------- */

/*form, .welcome {
	background: url(images/form-bg.png) top left no-repeat;
	width: 524px;
	height: 262px;
	padding-top: 1px;
}*/

.login, .welcome-user {
	width: 470px;
	float: left;
	margin-top: 30px;
	margin-left: 40px;
	font-size: 20px;
}

.username-text {
	width: 190px;
	float: left;
	margin-top: 25px;
	margin-left: 40px;
}

.password-text {
	width: 290px;
	float: left;
	margin-top: 25px;
	margin-left: 0px;
}

.welcome-text {
	width: 360px;
	float: left;
	margin-top: 50px;
	margin-left: 40px;
	line-height: 16px;
}

#form_login .username-field {
	width: 168px;
	height: 38px;
	float:left;
	margin-top: 10px;
	margin-left: 35px;
	background: url(images/username-field.png) center left no-repeat;
}

.username-field:hover {
	/*background: url(images/username-field-hover.png) center left no-repeat;*/
}

.password-field {
	width: 280px;
	height: 38px;
	float:left;
	margin-top: 10px;
	margin-left: 22px;
	background: url(images/password-field.png) center left no-repeat;
}

.password-field:hover {
	/*background: url(images/password-field-hover.png) center left no-repeat;*/
}
/*
#form_login input[type="text"], input[type="password"] {

	height: 16px;

	font-family: Verdana, Arial;
	font-size: 12px;
	color: #2d2d2d;
}*/

/* ------------ Custom Checkbox ------------------------------- */

/* Works for browsers with CSS3 support (with or without Javascript) */
/* Works for Internet Explorer 6-8 (without CSS3 support) with Javascript */
/* If Javascript isn't available this doesn't work for Internet Explorer 6-8 */

/*
#form_login input[type="checkbox"] {
	position: absolute;
	left: -999px;
}

#form_login input[type="checkbox"] + label {
	width: 132px;
	height: 24px;
	float: left;
	margin-top: 26px;
	margin-left: 37px;
	padding-left: 28px;
	display: block;
	position: relative;
	line-height: 24px;
	background: url(images/checkbox-off.png) top left no-repeat;
}

#form_login input[type="checkbox"]:checked + label {
	background: url(images/checkbox-on.png) top left no-repeat;
}

#form_login input[type="checkbox"]:checked:hover + label, input[type="checkbox"]:checked:focus + label {
	background: url(images/checkbox-on-hover.png) top left no-repeat;
}

#form_login input[type="checkbox"]:not(:checked):hover + label, input[type="checkbox"]:not(:checked):focus + label {
	background: url(images/checkbox-off-hover.png) top left no-repeat;
}
*/
/* -------------------------------------------------------------------------- */

#form_login .forgot-usr-pwd {
	width: 220px;
	float: left;
	margin-top: 26px;
	margin-left: 0;
	color: #cccccc;
	line-height: 24px;
}

#form_login .forgot-usr-pwd a {
	color: #cccccc;
	text-decoration: none;
	font-style: italic;
}

#form_login .forgot-usr-pwd a:hover, .forgot-usr-pwd a:focus {
	text-decoration: underline;
}

#form_login input[name="login_submit"] {
	width: 95px;
	height: 73px;
	float: left;
    margin-top: -25px;
	/*margin-top: 12px;*/
	/*margin-left: 2px;*/
    margin-left: 28px;
	font-family: Verdana, Arial;
	font-size: 26px;
	color: #ffffff;
    cursor: pointer;
}

#form_login input[name="login_submit"]:hover, input[name="login_submit"]:focus {
	background: url(images/go-hover.png) top left no-repeat;
}

.home {
	width: 70px;
	height: 73px;
	float: left;
	margin-top: 122px;
	margin-left: 21px;
	font-size: 20px;
	padding: 25px 0 0 15px;
}

.home:hover, .home:focus {
	background: url(images/go-hover.png) top left no-repeat;
}

.home a, .home a:hover, .home a:focus {
	color: #ffffff;
	text-decoration: none;
}

#footer {
	margin: auto;
	margin-top: 50px;
	width: 500px;
	height: 30px;
	background: url(images/footer-bg.png) bottom center no-repeat;
	text-align: center;
	font-family: "Times New Roman", Times, Georgia;
	font-weight: normal;
	font-size: 16px;
	color: #8d8d8d;
}

#footer a {
	text-decoration: none;
	color: #8d8d8d;
}

#footer a:hover, #footer a:focus {
	text-decoration: none;
	color: #2d2d2d;
}


.row_aim_logo{
	position: absolute;
	top:-65px;
	width: 100%;
}

.row_aim_logo_title{
	line-height: 40px;
	font-size: 12px;
}
/*
#form_login .form-control {
    display: inline-block;
    width:  325px !important;
    height: 32px !important;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #feffc6;
    background-image: none;
    border: 2px solid #bababa;
    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

#form_login .form-control:focus  {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

#form_login .form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

#form_login .form-control:-ms-input-placeholder {
    color: #999
}

#form_login .form-control::-webkit-input-placeholder {
    color: #999
}

#form_login .form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

#form_login .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

#form_login .form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed
}

#form_login textarea.form-control {
    height: auto
}

.fa-lf {
    font-size: 2em;
}

.inactive_dealer{
    color: #f40001 !important;
}*/