body {
    margin: 0;
    padding: 0;
    font-family: 'tahoma', Arial;
    color: white;
}

body, html {
	height: 100%;
}

form {
    display: grid;
    gap: 10px;
}

input, button {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: none;
    background-color: #f5f5f5;
}

button {
    cursor: pointer;
    background-color: #000000;
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
}

.footer {
	margin: auto;
	text-align: center;
}

.footerElement {
	color: white;
	margin: 1em;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
}

.text-highlight {
	background-color: white;
	font-size: 13px;
	padding-left: 4px;
	padding-right: 4px;
}

.space {
	height: 1.5em;
}

.antiscrapecontainer {
    font-size: 0;     /* whitespaces go away */
}
.antiscrapecontainer span {
    font-size: 16px;  /* spans text please stay */
}

#impressum {
	color: black;
	padding: 3em;
}

#bgImage {
	position: fixed;
	left: 0;
	right: 0;
	display: block;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100%;
	z-index: -1;
	filter: blur(3px);
	transform: scale(1.1)
}

@media screen and (max-width: 767px) {   
    #bgImage{
    	background-image: url("/img/Clock-12_cropped.jpg");
    } 
}

@media screen and (min-width: 768px) {      
    #bgImage{      
    	background-image: url("/img/cb.jpeg");
    } 
} 

#mainHeading {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
	margin: 0px;
}

#description {
    text-align: center;
    font-size: 1em;
}

#mainContainer {
	padding: 1em;
}

#logo {
	display: block;
	margin: auto;
}

#Anrede {
	background-color: rgba(255, 255, 255, 0.0);
	border: none;
	padding: 5px;
	width: 115px;
	height: 32px;
	margin-bottom: 1em;
	border-bottom: 1px solid rgba(0,0,0,0.3);
	cursor: pointer;
}

#Anrede option {
	background-color: rgba(255, 255, 255, 0.25) !important;
	border: none !important;
	border-radius: 0px !important;
}

#indicator {
	margin: auto;
	font-size: 10px;
}

#formContainer {
    margin: 20px auto;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
	padding: 2em;
	color: black;
	border: 0px solid white;
}

#formFields {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
}

.inputField {
	margin-bottom: 1em;
	background-color: rgba(0,0,0,0.3);
}

#termsAndConditions {
	font-family: 'Arial';
	font-size: 11px;
}

#termsBox {
	padding: 1em;
}

#successBox {
	position: relative;
	margin: auto;
	background-color: rgba(0,0,0, 1);
	color: white;
	padding: 1em;
	border-radius: 2px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
}

#arrowRightImg {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	position: absolute;
	top: -25px;
	right: 6px;
	transform: rotate(-20deg);
	height: 50px;
}