/* form css */

input {
	border: 1px solid #D5DCE1;
	height: 39px;
	outline: none;
}

input[type=text]:hover,
input[type=text]:focus,
input[type=password]:hover,
input[type=password]:focus {
	background: #f6f2d4;
}

input[type=text]:focus {
	border-color: #9ed0f4;
}
    

.input-error {
	color: #B42C2C;
	background: #EBC8C8 url(../images/ico-message-error.gif) no-repeat 98% 50%;
	border: 1px solid #B52E2E;
	
}

.error-message {
	color: #B42C2C;
	font-size: 9px;	
}

label {
	display: block;
	color: #7A8592;
	font-size: 11px;
	padding-bottom: 5px;
}

.button {
	background: #005DA6;
	border: 1px solid #022A48;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-image: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0, rgb(0,79,153)),
	    color-stop(1, rgb(0,105,175)),
	    color-stop(0.98, rgb(0,118,186))
	);
	background-image: -moz-linear-gradient(
	    center bottom,
	    rgb(0,79,153) 0%,
	    rgb(0,105,175) 100%,
	    rgb(0,118,186) 98%
	);

	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 13px;

}