/* ================================================== */
/* 	CSS Document: LOGIN */
/* ================================================== */
/* 
	Quelle: 
	https://www.w3schools.com/howto/howto_css_form_on_image.asp 
*/
/* ================================================== */
body, html {
    margin:0; 
    padding:0;

    /* The image used */
    background-image: url("_images/bg_webseite.png");
    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;
}


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


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