* { margin:0; padding:0; border:0; }

:root {
	--Body: 	 #AED5FF;
	--Titel: 	 #000000;
	--OKtext: 	 #00A400;
	--NOKtext:	 #cc0000;
	--Link:	 	 #0000FF;
	--LinkHover: #00008c;
}


#wrapper {
	text-align: center;
	height: auto;
}

a.puv {
	color: #0000FF;
}
a.puv:hover {
	color: #FF0000;
}



/* Ab hier Layout-Code PUV (PHP-UserVerwaltung) ------------------------*/

#content {
    margin: auto; 
    width: 290px;    
    height: auto;
	background-color: var(--Body);
    border: 0px solid red;
    text-align: left;
}

#message {
	width: 290px;
	height: 30px; 
    margin: 0px 0px 0px 0px;
    color: var(--NOKtext);
    font-size: 14px;
    text-align: left;
}

p.titel {
    font-size: 16px;
    color: #444;
	margin: 10px 0px 0px 2px;
}

p.titelS {
    font-size: 16px;
    color: #444;
	margin: 10px 0px 5px 2px;
}

a.link {
	color: var(--Link) !important;
	text-decoration: none;
}
a.link:hover {
	color: var(--LinkHover) !important;
	text-decoration: underline;
}

h1 {
	font-size: 24px;
	font-weight: normal;
	color: var(--Titel);
}

input[type=text] {
    width: 280px;
    padding: 5px;
    font-size: 14px;
	border: 2px solid #CCC !important;
    margin: 5px 0px 0px 0px;
}

input[type=text]:focus {
    border: 2px solid #000 !important;
}


input[type=password] {
    width: 280px;
    padding: 5px;
    font-size: 14px;
	border: 2px solid #CCC !important;
}

input[type=password]:focus {
    border: 2px solid #000 !important;
}

select {
    width: 295px;
    padding: 5px;
    font-size: 14px;
	border: 2px solid #CCC !important;
}


.button {
    width:160px;
    font-size: 17px;
    padding: 0.5em 2em;
    border: transparent;
    _box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    background-color: #000055 !important;
    color: white;
    border-radius: 4px;
    text-align:center;
}

.button:hover {
    _background: #333333;   /* rgb(2,0,36); */
    _background: linear-gradient(90deg, rgba(30,144,255,1) 0%, rgba(0,212,255,1) 100%);
	background: linear-gradient(90deg, #000055 0%, #0000FF 100%);
}

.button:active {
    transform: translate(0em, 0.2em);
}


