*{
	box-sizing: border-box;
	outline: 0;
}
body{
	font-family: "Barlow", sans-serif;
	min-height: 100vh;
	background: #103178;
}
.login{
	margin: 0;
	padding: 20px;
}
#login {
	width: 600px;
    padding: 8% 0 0;
    margin: auto;
    max-width: 100%;
}
#login form {
	width: 400px;
    margin: auto;
    max-width: 100%;
}
#login > p {
	text-align: center;
}
#backtoblog {
	font-size: .8em;
}
#login_error {
	border-left: 2px solid #eb4f4f;
    width: 400px;
    margin: auto auto 30px;
    padding: 0 0 0 10px;
}
.login #backtoblog a, .login #nav a{
	color: white;
	text-decoration: none;
}
.login h1 a{
	background-position: center top;
	background-repeat: no-repeat;
	color: #444;
	height: 84px;
	width:320px;
	max-width: 100%;
	background-size: 100%;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3em;
	margin: 0 auto 25px;
	padding: 0;
	text-decoration: none;
	text-indent: -9999px;
	outline: 0;
	overflow: hidden;
	display: block;
	/*display: none;*/
}

#login h1 a, .login h1 a {
	background-image: none, url(../images/logowhite.svg)!important;
}
.login form{
	border-radius: 5px;
	margin-top: 20px;
	margin-left: 0;
	padding: 26px 24px 18px;
	font-weight: 400;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.13);
}
#wp-submit {
	width: 100%;
    padding: 15px 0;
    background: transparent;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
	border: 0;
	cursor: pointer;
	background: #075ac9;
}
#wp-submit:not(:focus){
	box-shadow:none
}
.login form .input{
	margin-top: 4px;
	padding: 10px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid rgba(200,200,200,1);
}
#login_error, .message {
  color: white;
}
#login_error a {
  color: #12d776;
}
.wp-pwd {
    position: relative;
}
.wp-hide-pw {
    padding: 14px;
    border: 0;
    position: absolute;
    right: 5px;
    top: 10px;
    background: none no-repeat center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='490' height='360.3'%3E%3Cpath fill='%23666666' d='M485.4 167.2a341.8 341.8 0 00-109.1-90.1l48.9-48.9L396.8 0l-60.3 60.3a283.4 283.4 0 00-91.6-15.2c-91.1 0-176.5 43.4-240.4 122.1a20.3 20.3 0 000 25.7 342.1 342.1 0 00109.1 90.2L64.8 332l28.3 28.3 60.3-60.3c29.4 10 60.1 15.2 91.6 15.2 91.1 0 176.5-43.4 240.4-122.1a20.6 20.6 0 000-25.9zm-240.4-54c11.2 0 21.7 2.8 31 7.6l-90.3 90.3a67 67 0 0159.3-97.9zM47.2 180.1a280.1 280.1 0 01131.5-84.9A107.6 107.6 0 00156 240.8l-11.6 11.6a289.4 289.4 0 01-97.2-72.3zM245 247a67.3 67.3 0 01-31-7.6l90.3-90.3A67 67 0 01245 247zm66.3 18A107.6 107.6 0 00334 119.4l11.6-11.6a291.1 291.1 0 0197.2 72.4c-37.9 42.1-82.9 71-131.5 84.8z'/%3E%3C/svg%3E");
    background-size: 20px 14px;
}
input[type="password"] + .wp-hide-pw{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23666666' d='M496.4 243.1C432.5 164.4 347.1 121 256 121S79.5 164.4 15.6 243.1a20.3 20.3 0 000 25.7C79.5 347.6 164.9 391 256 391s176.5-43.4 240.4-122.1a20.5 20.5 0 000-25.8zM256 322.9a67 67 0 11.1-134 67 67 0 01-.1 134zM58.2 256a280.1 280.1 0 01131.5-84.9 107.6 107.6 0 000 169.8c-48.6-13.8-93.6-42.7-131.5-84.9zm264.1 84.9a107.6 107.6 0 000-169.8A280.1 280.1 0 01453.8 256c-37.9 42.2-82.9 71.1-131.5 84.9z'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}
.forgetmenot input{
	display: none;
}
.forgetmenot label{
	position: relative;
	cursor: pointer;
}
.forgetmenot label:before{
	content: "";
	border: 1px solid gray;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	top: 3px;
	position: relative;
	display: inline-block;
	border-radius: 3px;
	transition:.2s;
}
#rememberme:checked + label:before {
    background: #075ac9;
    border-color: #075ac9;
}
#rememberme + label:after {
	transition:.2s;
	content: "";
	opacity:0;
    border: 10px solid #fff;
    border-width: 0 2px 2px 0px;
    position: absolute;
    left: 6px;
    width: 3px;
    height: 10px;
    top: 3px;
    display: inline-block;
    transform: rotate(45deg);
}
#rememberme:checked + label:after {
	opacity: 1
}
:focus{box-shadow:0 0 0 .2rem hsla(0,3.3%,59%,.25)}
.privacy-policy-page-link {
	text-align: center;
}
.privacy-policy-page-link .privacy-policy-link {
	color:#fff;
}