﻿/*-------------Login Styles Begin----------------------*/
@import "https://fonts.googleapis.com/css?family=Roboto:400,100,200,300,500";

body {
	font-family: "Roboto",Verdana,sans-serif;
	font-size: 13px;
	font-weight: 300;
	color: #333;
}

h1 {
	font-size: 34px;
	font-weight: 300;
	line-height: 30px;
	margin: 20px 0 10px;
}

a, a:visited {
	text-decoration: none;
	color: #0065a4;
}

.fltLeft {
	float: left;
}

button {
	color: #fff;
	font-size: 21px;
	border: none;
	font-family: "Roboto",Verdana,sans-serif;
	font-weight: 400;
	padding: 4px 20px 5px;
	line-height: 27px;
}

	button.blue {
		background-color: #0065a4;
	}

		button.blue:hover {
			background-color: #017ac5;
		}

			button.blue:hover:disabled {
				pointer-events: none;
				background-color: #0065a4;
			}

img.loginLogo {
	background: url("../Images/logoSprite.png") no-repeat 0 0;
	display: block;
	margin: 25px auto 0;
}

form label {
	font-size: 17px;
	color: #000;
	text-align: right;
	width: 160px;
	margin: 6px 15px 0 0;
	float: left;
	clear: left;
	font-weight: 400;
}

form input[type="text"], form input[type="password"] {
	width: 300px;
	display: block;
	padding: 5px;
	font-size: 13px;
	font-family: "Roboto",Verdana,sans-serif;
}

#centerBox {
	margin: 25px auto;
	border: 1px solid #d5d5d5;
	padding: 0 25px 25px;
	max-width: 600px;
	overflow: hidden;
	background-color: #ffffff;
}

	#centerBox form.rightBdr {
		border-right: 1px solid #d5d5d5;
		width: 58%;
		float: left;
	}

button.forgot {
	margin-top: 10px;
}

#centerBox form label.singleCheckbox {
	margin: 5px 0 10px 0;
	width: 250px;
	font-size: 13px;
}

#centerBox form label {
	text-align: left;
}

#centerBox form input {
	clear: both;
	border: 2px solid #d5d5d5;
	vertical-align: text-bottom;
	margin-left: 0;
}

#centerBox p.fltLeft {
	width: 35%;
	margin-top: 5px;
	padding: 0 0 0 25px;
	line-height: 19px;
	font-weight: 400;
}

form button.blue.signIn {
	display: block;
	clear: left;
	margin-left: 1px;
}

#centerBox form .singleCheckbox {
	color: #757575;
}

body.login {
	height: 100%;
	background-color: #ecf0f1;
}

.field-validation-error, .validation-summary-errors {
	color: #f05050;
	display: block;
	font-weight: 400;
}

input.input-validation-error {
	border-color: #f05050 !important;
	margin-bottom: 2px;
}

.validation-summary-errors.text-danger ul {
	list-style: outside none none;
	margin: 5px 0;
	padding: 0;
}

form input[type="checkbox"] {
	border: none !important;
}


/*-------------Login Styles End----------------------*/
/*------------@media Query Styles Begin-------------*/
@media screen and (max-width: 670px) {
	/*form input[type="text"], form input[type="password"] {
		width: 90%;
	}*/
	form input[type="text"], form input[type="password"] {
		width: 250px;
	}

	img.loginLogo {
		background: url("../Images/logoSprite.png") no-repeat -437px 0;
		height: 104px;
		width: 242px;
	}
}

@media screen and (max-width: 550px) {
	#centerBox {
		padding: 10px 25px;
	}

		#centerBox form.rightBdr {
			width: 99%;
			border-right: none;
		}

		#centerBox p.fltLeft {
			background-color: #f2f2f2;
			border-top: 1px solid #c5c5c5;
			margin-top: 25px;
			padding: 2%;
			width: 100%;
		}
}

@media screen and (max-width: 400px) {

	form input[type="text"], form input[type="password"] {
		width: 95%;
	}

	img.loginLogo {
		background: url("../Images/logoSprite.png") no-repeat -729px 0;
		height: 78px;
		width: 180px;
	}

	button {
		width: 100%;
	}

	#centerBox {
		padding: 10px;
		margin-top: 10px;
	}

		#centerBox h1 {
			margin-top: 5px;
		}

		 #centerBox p.fltLeft {
			width: 95%;
		}
	/*------------@media Query Styles End-------------*/
