/* ================================================== */
/* 	CSS Document: LOGIN */
/* ================================================== */
/* 
	Quelle: 
	https://www.w3schools.com/howto/howto_css_form_on_image.asp 
*/
/* ================================================== */
body, html {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif; 
    margin:0; 
    padding:0;

    /* The image used */
    background-image: url("../images/hintergrund.jpg");
    min-height: 100%;
    /* Center and scale the image nicely */
    background-attachment: fixed;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

* {
    box-sizing: border-box;
}

.bgimg {
}

/* Add styles to the form container */
.container_web {
    position: absolute;
    left: 0;
    margin: 20px;
    max-width: 300px;
    padding: 16px;
    background-color: white;
}

/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1; 
    font-size:1.0em;
}
input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit button */
.btn {
    background-color: #4CAF50; 	/* Farbe des Login-Buttons */ 
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9; 
    font-size:0.85em;     
}
.btn:hover {
    opacity: 1;
}

/* ##### Textblock ##### */
/* Add styles to the form container */
/* Bottom right text */
.text-block {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #daa671; /* braun */
    /* https://www.w3schools.com/colors/colors_picker.asp?colorhex=A52A2A */
    color: #F5F5F5; /* WhiteSmoke */
    padding-left: 20px;
    padding-right: 20px; 
	padding-bottom:5px;
    opacity: 0.85;     
}

/* CSS-Code der iPhone-Version */
@media only screen and (max-width: 480px) {
	/* 
	text-block wird nicht angezeigt, da dieses mit den Eingabefeldern überlagert 
	wird. Display zu klein! 
	*/
	.text-block { 
		display: none; 
	}
}
/* ##################### */
