html,
body {
	height: 100%;
	padding: 0;
	margin: 0;
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.container {
	display: table;
	width: 100%;
	height: 100%;
	min-height: 100%;
}
.site-wrapper {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 10;
}
.login-content {
	margin-right: auto;
	margin-left: auto;
}
img.login-symbol {
	width: 220px;
	margin: 0 auto;
}
.login-box {
	padding: 30px;
	margin: 0;
	background-color: #fff;
	/*background: rgba(255,255,255,.8);*/
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	border-radius: 25px;
}
.login-heading {
	text-align: center;
	padding: 10px 0 30px 0;
}
.login-heading .title {
	line-height: 1.3em;
}
.login-body {
	padding: 0;
	margin: 0;
}
.login-footer {
	text-align: center;
	padding-top: 20px;
}
.login-input {
	padding: 0 15px;
	margin-bottom: 40px;
}
.login-input .input-group {
	width: 100%;
	margin-bottom: 15px;
}
.login-input .input-group > input.form-control {
	position: relative;
	padding-left: 45px;
	z-index: 1;
}
.login-input .input-group i.fa {
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 1.2em;
	color: #999999;
	z-index: 10;
}
.login-input .form-control {
	height: inherit;
	padding: 10px 12px;
	font-size: 1.143em;
	color: #000000;
	background-color: #ffffff;
	background-image: none;
	border-radius: 0;
	border: 1px solid transparent;
	border-bottom: 1px solid #dddddd;
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
	border-radius: 0;
}
.btn-login {
	color: #ffffff;
	font-size: 1.286em;
	font-weight: 700;
	padding: 10px 12px;
	border-radius: 25px;
	background-color: #2d65f6;
}
.btn-login.btn-block {
	color: #ffffff;
	background-color: #2d65f6;
}
.btn-login:hover,
.btn-login:focus {
	color: #ffffff;
	background-color: #1440b3;
}
.btn-login.btn-block:hover,
.btn-login.btn-block:focus {
	color: #ffffff;
	background-color: #1440b3;
}
.login-content fieldset {
	border: none;
	padding: 0;
	margin: 0;
}
.login-link {
	margin-top: 40px;
}
.login-link .btn {
	margin-bottom: 10px;
	border-radius: 25px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.login-copy {
	font-size: 0.857em;
	color: #999999;
	text-align: center;
}
.link-group {
	padding: 15px;
}
.link-group .btn-link {
	color: #ffffff;
	font-size: 1.143em;
	text-shadow: 0 -1px 0 rgba(0,0,0,.5);
}

.login-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/resources/custom/images/bg-login.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

@media (min-width: 768px) {
	.login-content { width: 400px; }
}
@media (max-width: 767px) {
	.login-box { padding: 40px 20px; }
}