body {
    height:100%;
    font-family: Calibri Light,Calibri,Arial,sans-serif; ;
    background-image: url("../img/login2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #cccccc; 
    color: white;
    margin: 0;
}

html{
    width: 100%;
    height: 100%;
}

label{
    margin-left: 0px;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 5px 5px;
    margin: 4px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 4px 4px;
    margin: 4px 0;
    border: none;
    cursor: pointer;
    width: 50%;
}

button:hover {
    opacity: 0.8;
}

.container {
  background: rgb(0,0,0); /* Fallback color */
  background: rgba(0,0,0, 0.5); /* Black background with 0.5 opacity */ 
  position:absolute;
  top:50%;
  width:100%;  
  -ms-transform: translateX(0%) translateY(-50%);
  -webkit-transform: translate(0%,-50%);
  transform: translate(0%,-50%);  
}

.ticker_container{
    height: 70px;
    width: 100%;

}
.ticker{
    height: 70px;
    margin: auto;
    width: 600px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 25px;
    display: flex;
    align-items: center;
}
.news_header{
    font-weight: bold;
    text-align: center;
}
.news_body{
    margin: 0;
    white-space: nowrap;
    width: 150%;
    font-weight: 700;
    text-align: left;
    color: #ffff99;
    
    animation: moving 20s linear infinite;
    
}

@-webkit-keyframes moving{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }   
}

@keyframes moving{
    0%{
        transform: translateX(60%);
    }
    100%{
        transform: translateX(-180%);
    }
}

.content{
    width: 300px;
    margin: 0 auto; /* Center it */
}

.loginform{

    max-width: 100%;
}

.ctrlCenter{
    text-align: center;
}

/* Smart Phones und Tablets mit mittlerer Auflösung */
@media all and (max-width: 70em) {
    
    #img_corona{
        visibility: hidden;
    }
    
    .ticker{
        width: 100%;
    }
}

