body {

}
#login {
	border: thin solid #fff;
	margin-top: 5%;
	padding: 5px;
	background: #FFF none repeat scroll 0% 0%;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.13);
}

#login h1 {

}

#login h1 a {
	box-sizing: border-box;
	background-image: url("logo.svg") !important; 
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-origin: border-box;	
	border: 160px solid rgba(0,0,0,0);
	border-radius: 50%;
	background-size: 256px auto;
	height: 320px !important;
	width: 320px !important;
	border-style: dotted;	
	transition: 1s ease;
}
#login h1 a:hover {
	border-color: rgba(0, 0, 0, 0.5);
	border-width: 0;
	border-style: double;	
}
#loginform {
	background: none;
	box-shadow: 0px 0px 0px #fff;
}
#loginform label {
	display: inline;
}
	
p label {

}
p label input {
	display: block;
	visibility: visible;	
}
#user_login:before {
	content: 'U';
}
#user_pass:before {
	content: 'P';
}
#wp-submit {
	
}
#wp-submit:before {
	content: 'S';	
}
#nav {
	background-color: red;
	display: none;
}
#backtoblog {
	text-align: right;
}
#backtoblog:before {
	content: 'Wait, I am not Josh.\A';
	white-space: pre;
}
#backtoblog {

}

#login_error {
	display: none;
}

/**

	Genericons

*/


/* IE8 and below use EOT and allow cross-site embedding. 
   IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
   So unfortunately, IE9 will throw a console error, but it'll still work.
   When the font is base64 encoded, cross-site embedding works in Firefox */

@font-face {
    font-family: 'Genericons';
    src: url('Genericons.eot');
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Genericons";
    src: url("./Genericons.svg#Genericons") format("svg");
  }
}


/**
 * All Genericons
 */

.genericon {
	font-size: 16px;
	vertical-align: top;
	text-align: center;
	-moz-transition: color .1s ease-in 0;
	-webkit-transition: color .1s ease-in 0;
	display: inline-block;
	font-family: "Genericons";
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	text-decoration: inherit;
	text-transform: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	speak: none;
}

 /* Horizontal edition */
@media screen and (min-width: 720px) {
	
	#login {
		width: 700px;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		-moz-column-gap: 30px;
		column-gap: 30px;
		-webkit-column-width: 320px;
		column-width: 320px;
	}
}
  /* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
  }
}