html, body{
    height:100%;
    margin:0;
}
body{
	display:flex;
    flex-direction:column;
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Ubuntu', sans-serif;
}
.mobile {
	display:none !important;
}
.site{
    max-width:1000px;
	height:100%;
    width:100%;
    margin:20px auto 0 auto;
    display:flex;
    box-sizing:border-box;
}

.main-content{
    flex:1;
    padding:20px;
    box-sizing:border-box;
	border:0px solid;
	display:flex;
    justify-content:center;   /* horizontal */
    align-items:center;       /* vertikal */
	height:100%;
}

.special-content{
    width:350px;
    padding:0px;
    box-sizing:border-box;
}

.side-box{
    width:100%;
    margin-bottom:20px;
    box-sizing:border-box;
}

.side-box-title{
    display:block;
    background:#67b32e;
    color:#ffffff;
    padding:10px;
    font-weight:bold;
    text-decoration:none;
    box-sizing:border-box;
}

.side-box-title-link{
    background:#67b32e;
}

.side-box-title-link:hover{
    background:#d97706;
    color:#ffffff;
}

.side-box-links{
    background:#e5e5e5;
    box-sizing:border-box;
}

.side-box-links a{
    display:block;
    padding:10px;
    text-decoration:none;
    color:#333333;
    border-bottom:1px solid #d0d0d0;
    box-sizing:border-box;
}

.side-box-links a:hover{
    background:orange;
    color:#ffffff;
}

/* login startseite */

.side-box-login{
    background:#e8ffd7;
    padding:15px;
    box-sizing:border-box;
}

.side-box-login label{
    display:block;
    font-size:14px;
    margin-bottom:5px;
}

.side-box-login input{
    width:100%;
    padding:6px;
    margin-bottom:12px;
    border:1px solid #bbb;
    box-sizing:border-box;
    background:#ffffff !important;
    color:#00388a !important;
    -webkit-appearance:none;
    appearance:none;
}

.side-box-login input:focus{
    background:#ffffff;
    border:1px solid orange;
    outline:none;
}

.side-box-login input:-webkit-autofill,
.side-box-login input:-webkit-autofill:hover,
.side-box-login input:-webkit-autofill:focus,
.side-box-login input:-webkit-autofill:active{
    -webkit-box-shadow:0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color:#00388a !important;
    border:1px solid #bbb !important;
}

.login-button{
    text-align:right;
}

.login-button button{
    background:#67b32e;
    color:white;
    border:none;
    padding:6px 14px;
    cursor:pointer;
}

.login-button button:hover{
    background:orange;
}