body {
	background: #ECEDEF;
backdrop-filter: blur(9.899999618530273px);
}

#login_box {
	
	display:block;
	position:relative;
	margin: 0px auto 0;
	opacity: 0;
	box-shadow: 0 0 0 rgba(0,0,0,.2) inset;
	background-size: cover;
}

#content_wrapper {
	padding: 30px 30px 18px;
	width: 1313px;
	margin: 0 auto;
	position:relative;
	top: 8%;
}

#content_wrapper img {
	position: absolute;
	bottom: 35px;
	right: 45px;
}

.login-menu {
	margin:  0;
	padding: 0;
	position: absolute;
	bottom: 35px;
}

.login-menu > li > a {
	color: #B49E77;
	font-size: 13px;
	font-family: 'open_sansregular';
	border-bottom: 1px solid transparent;	
	transition: all 200ms;
	-webkit-transition: all 200ms;
}

.login-menu > li > a:hover {
	border-bottom-color: #ffc7c8;
}

.login-menu > li {
	display: inline-block;
	margin: 0 10px;
}

#form_wrapper{
	text-align: center;
}

#form_wrapper h1 {
	color: #000;
	float: none;
	font-size: 35px;
	margin-bottom: 25px !important;
}

#form_wrapper input {
	background-color: #e9e9e9;
	display: block;
	float: none;
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	text-align: center;
	font-size: 20px;
	color: #333;
	padding: 15px 20px;
	width:460px;
	box-shadow: 0 0 0 rgba(0,0,0,0.2) inset;
	margin: 0 auto 15px;
	transition: all 200ms;	
	-webkit-transition: all 200ms;
	font-family: 'open_sansregular';
}

#form_wrapper input:hover {
	background-color: #fff;
	animation-name: exploded;
    animation-duration: 100ms;
}

.shown{
	animation-name: exploded2;
    animation-duration: 100ms;
}

#form_wrapper #ContentPlaceHolder1_btnSubmit {
	background-color: #B49E77;
	color: #fff;
	cursor: pointer;	
	box-shadow: none;
	transition: all 300ms ease-out;
	-webkit-transition: all 300ms ease-out;
}

#form_wrapper a {	
	font-family: 'open_sansregular';
	color: #000;
	border-bottom: 1px solid transparent;
	padding-bottom: 2px;
	transition: all 200ms;
	-webkit-transition: all 200ms;
}

#form_wrapper a:hover {
	color:#fff;
}

#copyright {
	text-align: center;
	margin-bottom:30px;
}

#form_wrapper #ContentPlaceHolder1_btnSubmit:hover{
	background-color: #deab51;	
	animation: none;
}

@keyframes exploded {
    0%   { box-shadow: 0 0 5px rgba(0,0,0,.4);}
    100% {box-shadow: 0 0 100px rgba(0,0,0, 0);}
}

@keyframes exploded2 {
    0%   { box-shadow: 0 0 5px rgba(0,0,0,.4);}
    100% {box-shadow: 0 0 500px rgba(0,0,0, 0);}
}

