/* This stylesheet is used to display index.php @public */

/* <input>-tags */ 
input[type=text],input[type=password],input[type=date],input[type=email] {
width:100%;
padding:8px 10px;
margin:5px 0;
border-radius:4px;
box-sizing:border-box;
border-color:#ccc;
}

input[type=submit] {
width:100%;
box-sizing:border-box;
background-color:#e96656;
padding:5px 20px;
text-transform:uppercase;
color:#FFF;
font:inherit;
cursor:pointer;
border-radius:4px;
border:none;
height:40px;
}

input[type=submit]:hover {
background-color:#F0412B;
}


/*content*/
body {
font-family:Lato, Arial, Sans-Serif;
font-size:1em;
background-color: #f0e7da;
margin:0;
}

#login_screen {
width:300px;
height:auto;
margin:100px auto;
padding:15px;
background-color:#FFF;
box-shadow:0 8px 16px 0 rgba(0,0,0,0.75);
}

/* Hiermit können Safari >=1.1, Opera >=9.5, IE9 was anfangen*/
::selection {
    background: #43478D;
    color: white;
}
/* und hiermit der Firefox >=1 */
::-moz-selection {
    background: #43478D;
    color: white;
}


/*header*/
#beta {
background-color:red;
color:#FFF;
width:200px;
padding:10px;
padding-left:70px;
margin-left:-80px;
margin-top:-130px;
-moz-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
-webkit-transform:rotate(-45deg);
transform:rotate(-45deg);
}

.title {
color:#FFF;
background-color:#43478D;
padding:30px;
margin-top:0;
line-height:40px;
font-size:45px;
font-family:inherit;
font-weight:500;
text-transform:uppercase;
}

#selection{
    margin: auto;
    width: 900px;
    margin-top:0px;
}

#logo {
width:100px;
height:100px;
float:right;
margin-top:-70px;
}

/*footer*/
footer {
color:#FFF;
background-color:#43478D;
padding:10px 0;
position:absolute;
height:20px;
width:100%;
bottom:0;
}

footer span{
color:#FFF;
display:block;
text-align:right;
margin-right:30px;
}

#help{
    padding: 0px 50px;
}

#help a{
    color:#e96656;
}

/*END of Stylesheet*/

/* for mobile devices */

@media only screen and (max-width: 768px) {
    
    
    .title > center {
        font-size: 25px
    }
    
    .title > a{
        display: none;
    }
    
    #selection{
        width: auto;
    }
    
    table tr > *{
            display: block;
        }
        table tr {
            display: table-cell;
            width: 100vw;
        }
        
        table td{
            position: relative!important;
            bottom: auto!important;
            width: auto!important;
        }
}
