/* Media.css 25.05.2026 */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

/* Variablen */
:root {
	--primary: #002919;
	--secondary: #ffffff;
}

/* reset */
body,p,a,ul,li {
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

li {
	list-style-type: none;
}

/* base styles */
body {
	background: var(--secondary);
	overflow-x: hidden;
	font-family: 'Rubik Regular';
}

section {

}

.form-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* Element drehen, skalieren, schräg stellen oder übersetzen  */
	/*background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));*/
	background: linear-gradient(0.55turn, #0d0d0e, #e92525, #f3b93b);
	width: 280px; /*Breite des Login (380)*/
	padding: 10px 30px 30px 30px; /*Innenabstände im form-Container*/
	border-radius: 10px;
	box-shadow: 7px 7px 60px rgb(110, 57, 8);
}

.control input {
	width: 70%;
	display: block;
	padding: 10px;
	border: 10px;
	outline: none; /* Kurzform beinhaltet outline-color, outline-style, outline-width */
	margin: 1em 0;
	background-color:#e7e7e7; /*Hintergrund Eingabeffelder*/
}

.control label {
	font-size: 1.2em; /*1.0em*/
	color: #dce1e9;
}

.Button { /* Hintergrund von Login Button */
	background: none;
	border: 2px solid qvar(--primary);
	color: var(--primary);
	padding: 6px 52px; /*6px 12px;*/
	border-radius: 20px;
	text-transform: uppercase;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
	display: inline-block;
	opacity: .7;
}

.Button:hover {
	color: #bebebe;
	background: var(--primary);
	
}

input {
	background: rgba(0, 0, 0, 7.5);
	padding: 10px 16px;
	border-radius: 20px;
	border: 2px solid #0a1c38;
	color: #0a0a0a;
}

h1,h2,h3,h4 {
	color:#dce1e9;/*var(--primary);*/
	font-weight: bold;
}

p,a,li {
	color:var(--primary);
}

h1,h3 {
	font-size: 1.2em;
}

h2 {
	/*text-transform: uppercase;	 alles in Großbichstaben*/
	font-size: 1.6em;
	text-align: center;
	margin-bottom: 1em;
}

h4 {
	font-size: 1.1em;
}

.no-access {
	font-size: 1.0em;
	color: #fffb05;
	text-align: center;
	margin-top: .7em;
	padding: 5px 0px;

}
/* Einstellungen zu verschiedenen Displaygr��en */

/* kleine Displays */
@media screen and (min-width: 320px)
{	section {
		position: relative;
	height: 100vh; /*Hintergrund unten weniger*/
	width: 100%;
background: url("/img/BG1536-2026.png");
	background-size: cover;
	background-position: center center;
	}
}

/* grosse Displays */
@media screen and (min-width: 960px) {
	body {
		font-size: 18px;
	}
section {
	position: relative;
	height: 100vh; /*Hintergrund unten weniger*/
	width: 100%;
background: url("/img/BG1536-2026.png");
	background-size: cover;
	background-position: center center;
}
}

/* Desktops */
@media screen and (min-width: 1200px) {
	body {
		font-size: 20px;
	}
	.form-container {
		left: 30%;
	}
section {
	position: relative;
	height: 100vh; /*Hintergrund unten weniger*/
	width: 100%;
	background: url("/img/BG1536-2026.png");
	background-size: cover;
	background-position: center center;
}
}