#loginModal a {
		color: #028EC3;
}

#loginModal a:hover,
#loginModal a:focus {
		color: #23527c;
		text-decoration: underline;
}

.loginModal:target + #cover {
	display: block;
	opacity:1;
}

.loginModal {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1050;
		display: none;
		overflow: hidden;
		-webkit-overflow-scrolling: touch;
		outline: 0;
}

#cover{
	display: none;
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0,0,0,0.6);
		z-index: 105;
		width: 100%;
		height: 100%;
}

/* Login Modal | v1 */

.modal-dialog {
		position: relative;
		width: 450px;
		margin: 30px auto;
		z-index: 1045;
}

.modal-content {
		position: relative;
		background-color: #fff;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: 1px solid #999;
		border: 1px solid rgba(0, 0, 0, .2);
		border-radius: 5px;
		outline: 0;
		-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .3);
		box-shadow: 0 3px 9px rgba(0, 0, 0, .3);
}

#loginModal .modal-header {
	text-align: center;
	padding: 15px 15px 12px;
	border-bottom: 1px solid #e5e5e5;
}

#loginModal .modal-header .close {
		background: url(../images/icon-close.png) no-repeat 9px center;
		color: #008EC3;
		height: 30px;
		margin-top: -4px;
		opacity: 1;
		width: 30px;
		float: right;
		border: none;
		padding: 0;
		position: absolute;
		right: 10px;
		top: 15px;
		cursor: pointer;
}

.modal-title{
	font-size: 18px;
	font-weight: normal;
	margin: 0;
	line-height: 1.42857143;
	display: block;
	color: #333;
}

#loginModal .modal-body {
	padding: 50px 60px;
}
#loginModal .modal-body .forgot {
	font-size: 12px;
	text-align: right;
	margin-top: -10px;
	height: 15px;
}
#loginModal .modal-body button {
	background-color: #f57e20;
	border-radius: 3px;
	color: #ffffff;
	font-size: 15px;
	margin: 15px 0;
	padding: 13px 10px 11px;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
	border: none;
	border-bottom: rgba(0,0,0,0.40) 1px solid;
	cursor: pointer;
	display: block;
	line-height: 1.42857143;
}
#loginModal .modal-body .options {
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #333;
}

#loginModal .modal-body form{
	text-align: center;
}

/* Float Label */
input.form-control {
	-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;
}

input.form-control {
	font-size: 16px;
	padding: 18px 20px 5px;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 46px;
	line-height: 1.33;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form-control:focus {
	border-color: #008EC3;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(45,121,181,0.30);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(45,121,181,0.30);
}

.control-label {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.4;
	pointer-events: none;
	position: absolute;
	transform: translate3d(20px, 16px, 0);
	transform-origin: left top;
	transition: 200ms;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)  {
	.control-label {
		padding-left: 19px;
	}
	.loginModal .control-label {
		padding-left: 0;
	}
}

.label-error{
	font-size: 14px;
	color: #CC0000;
	font-weight: bold;
}

.error{
	display: none;
	padding-bottom : 15px;
	text-align: center;    
}

.has-error .form-control {
	border-color: #CC0000;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.has-error .form-control:focus {
	border-color: #B70000;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}

.form-group {
		margin-bottom: 15px;
}

.form-group.focused .control-label {
	color: #008EC3;
	font-size: 12px;
	opacity: 1;
	transform: translate3d(20px, 5px, 0);
}
.form-group.focused.has-error .control-label {
	color: #CC0000;
}