/**
 * Formatierung -> Login
 */
 
@media all {
    section {
     text-align: center;
    }
   
    section .login-form i {
        font-size: 2.8em;
        vertical-align: middle;
        color: #22aadd;
        opacity: 1;
        cursor: default;
    }
    
    section ul {
        list-style-type: none;
    }
    
    section input[type="text"],
    section input[type="password"] {
        width: 300px;
        font: normal 1.2em Barlow Condensed;
        padding: 15px;
    }
    
    section input[type="text"]:hover,
    section input[type="password"]:hover,
    section input[type="text"]:focus,
    section input[type="password"]:focus {
        -webkit-box-shadow: 0 0 12px #22aadd;
        -moz-box-shadow: 0 0 12px #22aadd;
        box-shadow: 0 0 12px #22aadd;            
    }
    
    section input[type="text"] {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;    
    } 
    
    section input[type="password"] {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 11px;    
    } 
    
    section input[type="submit"] {
        font: normal 1.2em Barlow Condensed;
        color: #fff;
        background: #202D30;
        margin-top: 25px;
        width: 200px;
        height: 45px;        
        opacity: 0.5;
        border-radius: 8px;
    }
    
    section input[type="submit"]:hover,
    section input[type="submit"]:focus {
        opacity: 1;
        -webkit-box-shadow: 0 0 12px #22aadd;
        -moz-box-shadow: 0 0 12px #22aadd;
        box-shadow: 0 0 12px #22aadd; 
    }
       
   .login-msg {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        font: normal 1em Barlow Condensed, sans-serif;
        color: #F79195;
        text-align: center;
        background: #343434;        
        padding: 15px;
        -webkit-box-shadow: 0px 0px 5px 3px #F79195;
        -moz-box-shadow: 0px 0px 5px 3px #F79195;
        box-shadow: 0px 0px 5px 3px #F79195;
    }
}

@media only screen and (width: 962px) { 
    section img {
           
    }
}

@media only screen and (width: 1280px) { 
    section img {
        margin-top: 50px;    
    }
}

@media only screen and (width: 1366px) { 
    section img {
        margin-top: 60px;    
    }
}

@media only screen and (width: 1536px) { 
    section img {
        
    }
}

@media only screen and (width: 1600px) { 
    section img {
        margin-top: 150px;    
    }
}

@media only screen and (min-width: 1900px) { 
    section img {
        margin-top: 220px;
    }
}