body{
    background-image: url(Bilder/login.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: cadetblue;
    font-family: sans-serif;
    overflow: hidden;
}
.login-box{
    width: 80%;
    background: rgba(0,0,0,0.8);
    margin: 2% auto;
    padding: 10px 0;
    padding-bottom: 10px;
    color: #fff;
    box-shadow: 0 0 20px 2px rgba(0,0,0,0.5);
    border-radius: 10px;
}
h1{
    text-align: center;
    margin-bottom: 10px;
}
.input-box{
    margin: 31px auto;
    width: 80%;
    border-bottom: 1px solid #fff;
    padding-top: 10px;
    padding-bottom: 5px;
}
.input-box input{
    width: 80%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
}
::placeholder{
    color:#ccc;
}
.fa{
    margin-right: 5px;
}
.auge{
    float: right;
}
#hide1{
    display: none;
}
.login-btn{
    margin: 31px auto;
    width: 80%;
    display: block;
    outline: none;
    padding: 10px 0;
    border: 1px solid #fff;
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-size: 16x;
}
a:link {
    color: grey;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    color: rgb(75, 71, 71);
    background-color: transparent;
    text-decoration: none;
}
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size:15px;
}
.portal {
    position: fixed;
    bottom: 20px;
    width: 100%;
    font-size:15px;
    text-align: center;
}


@media only screen and (min-width: 768px) {
    .login-box{
        width: 400px;
        margin: 5% auto;
        padding: 50px 0;
    }
    .footer {font-size:15px;}
    .portal {
        font-size:30px;
        text-align: left;
        bottom: 0;
    }
    .h1{margin-bottom: 40px;}
}
@media only screen and (max-height: 650px) {
    .footer{display : none;}
    .portal{display : none;}
}