/* =======================================================
Stylesheet zur Gestaltung der Perspectron-Login-Seite
Datei: anmeldung.css
Datum: 18.10.2015
======================================================= */
             
/* Schrift einbinden */
@import url(cmu-typewriter/Typewriter/cmun-typewriter.css);


@media all {

/* Reset */

body, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, code,
ul, ol, li,
table, th, td,
form, label, input, fieldset, legend, textarea
{
	padding: 0;
	margin: 0;
	text-decoration: none;
}

/* Restauration */

body
{
	font-family: "Computer Modern Typewriter", Courier;
	color: rgba(0,255,255,0.75);
	background-color: black;
}

form#anmeldefenster
{
	font-family: "Computer Modern Typewriter", Courier;
	color: rgba(0,255,255,0.75);
	font-size: 100%;
	background-color: transparent;
	border: 1px solid rgba(0,255,255,0.25);
	/* Falls JavaScript blockiert wird: */
	position: static;
	width: 200px;
	padding: 10px;
	margin: 20px;
}

div#ausschnitt
{
	position: absolute;
	z-index: 1;
	overflow: hidden;
} 

h1
{
	font-family: "Computer Modern Typewriter", Courier;
	font-weight: normal;
	color: rgba(0,255,255,1);
	line-height: 100%;
	/* Falls JavaScript blockiert wird: */
	font-size: 100%;
	border-bottom: 1px solid rgb(0,255,255);
	margin-bottom: 0.75em;
}

label
{
	font-family: "Computer Modern Typewriter", Courier;
	color: rgb(0,255,255);
	font-weight: normal;
	font-size: 100%;
	display: block;
	cursor: pointer;
}

input[type="text"],
input[type="password"]
{
	display: block;
	font-family: "Computer Modern Typewriter", Courier;
	color: rgba(0,255,255,1);
	font-weight: normal;
	font-size: 100%;
	background-color: transparent;
	padding: 0.3em;
	border: 1px solid rgb(0,255,255);
	/* Falls JavaScript blockiert wird: */
	width: 188px;
	margin-bottom: 0.5em;
}


input[type="text"]:focus,
input[type="password"]:focus
{
	color: rgba(0,255,255,1);
	background-color: transparent;
	outline: 1px solid rgba(0,255,255,0.5);
	box-shadow: 0px 0px 25px rgba(0,255,255,0.5);
}

input[type="submit"]
{
	display: block;
	font-family: "Computer Modern Typewriter", Courier;
	font-size: 100%;
	color: rgb(0,255,255);
	font-weight: normal;
	background-color: transparent;
	padding: 0.25em;
	outline: 0;
	border: 1px solid rgb(0,255,255);
	cursor: pointer;
	/* Falls JavaScript blockiert wird: */
	margin-top: 1em;
}

input[type="submit"]:hover,
input[type="submit"]:focus
{
	outline: 1px solid rgba(0,255,255,0.5);
	box-shadow: 0px 0px 25px rgba(0,255,255,0.5);
}

input[type="submit"]:active
{
	color: rgba(0,255,255,1);
	text-shadow: 0 0 10px rgba(0,255,255,0.95);
	background-color: rgba(0,127,127,0.5);
	border: 1px solid rgb(127,255,255);
	box-shadow: 0px 0px 15px rgba(0,255,255,0.5);
}


p#keinJS
{
	font-family: "Computer Modern Typewriter", Courier;
	color: white;
	background-color: black;
	margin: 20px;
}

p#loginfehler
{
	font-family: "Computer Modern Typewriter", Courier;
	color: red;
	background-color: black;
	margin: 20px;
}

input:-webkit-autofill {
	background-position: 0 0;
    -webkit-box-shadow:0 0 0 50px rgba(0,255,255,1) inset;
    -webkit-text-fill-color: black;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px rgba(0,255,255,1) inset;
    -webkit-text-fill-color: black;
}


} /* Ende @media - nicht löschen! */

