/* ==========================================================================
   Loginbereich
   ========================================================================== */
html {height:-webkit-fill-available;}

   body {background:url("../img/background.jpg") no-repeat;
    background-attachment: fixed;
    padding:0;
    background-position: center;}   

#login {display:flex;
justify-content: center;
align-items:center;
width:100%;
height:100%;
min-height:100vh;
min-height:-webkit-fill-available;
position: relative;}

#login:after {content:"";
    z-index:-1;
position: absolute;
top:calc(50% - 265px);
left:calc(50% - 265px);
border-radius:100%;
background:#fff;
width:530px;
height:530px;}

#login > div {max-width:400px;
width:100%;
padding:3rem;}

#loginlogo {display:flex;
    justify-content: center;
align-items: center;
gap:0;
margin-bottom:2.5rem;}

#loginlogo > img {max-width:250px;
    width:100%;
display:block;}

#login .btn-ohne,
#login .btn-primary {display:block;
    margin:0.5em 0;
    width:100%;
text-align: center;}

