@charset "utf-8";

.login {
  overflow: auto;
  position: relative;
  background: none;
}
.login:before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
	background-repeat: no-repeat;
	background-position: center center;
  background-size:cover;
  width: 101%;
  height: 101%;
  margin: -2px;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

.login h1 a {
	font-size: 100% !important;
	line-height: 1 !important;
	width: 100% !important;
	height: auto !important;
	padding: 2em 0 !important;
	margin: 0 auto !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 100% auto !important;
}
@media (max-width: 480px) {
	.login h1 a { width: 80%; }
}

.login form {
	margin-top: 10px;
	padding-bottom: 30px;
}
.login form .input {
	font-size: 118%;
	padding: 0 8px;
	border: 1px solid #ddd;
	box-shadow: 0 0 2px 2px rgba(200,200,200,0.2) inset;
}
.login form input:focus {
	background-color: #fff;
	border: 1px solid #a0d2ff;
	box-shadow: none;
}
.forgetmenot input {
    margin-right: 0;
    margin-bottom: -2px;
}
.login label {
	color: #333;
	font-weight: bold;
}
.login .button-primary {
	font-weight: bold;
	background: #000 !important;
	border: none;
	box-shadow: none;
	text-shadow: none;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.login .button-primary:hover,
.login .button-primary:focus,
.login .button-primary:active {
	background: #e72410 !important;
	border: none;
	box-shadow: none;
	-webkit-transition: all 0.25s ease-in-out !important;
	transition: all 0.25s ease-in-out;
}

.login #nav {
	padding: 0 !important;
	margin: 20px 0 0 !important;
}
.login #nav a {
	display: block;
	width: 100%;
	color: #fff !important;
	text-align: center;
	font-weight: bold;
	padding: 8px 0;
	border: 1px solid #fff;
	border-radius: 3px;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.login #nav a:hover,
.login #nav a:focus,
.login #nav a:active {
	color: #333 !important;
	background: #fff;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	box-shadow: none;
}
.login #backtoblog {
	padding: 0;
	margin: 10px 0;
}
.login #backtoblog a,
.login #backtoblog a:hover,
.login #backtoblog a:focus,
.login #backtoblog a:active {
	color: #fff !important;
	font-size: 90%;
	font-weight: bold;
	box-shadow: none;
}
.login #login_error,
.login .message {
	color: #333;
	font-size: 86%;
	font-weight: bold;
	padding: 12px 15px 10px;
	border-left: 3px solid #e72410;
	border-radius: 3px;
	margin-top: 10px;
}

