img#banner{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

div#ssl{
    background-color: #ffffaa;
    padding: 5px;
    border-bottom: 5px solid #ffaa00;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

div#out{
    background-color: #55ff55;
    padding: 5px;
    border-bottom: 5px solid #009900;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

div#in{
    background-color: #cc0000;
    padding: 5px;
    border-bottom: 5px solid #660000;
    text-align: center;
    color: #000000;
    font-weight: bold;
}

div#counter{
    display: inline-block;
}

form{
    display: block;
    width: 100%;
}

input{
    display: block;
    width: 100%;
    height: 50px;
    background-color: #5555cc;
    border-bottom: 5px solid #000055;
    text-align: center;
    text-align: -webkit-center;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
    transition: 1s color, 1s background-color;
    -webkit-transition: 1s color, 1s background-color;
}

input:focus, input:hover, input[type="submit"]{
    color: #222200;
    background-color: #9999ff;
}

div#loading{
    position: fixed;
    top: 0px;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #ddddff;
    opacity: 0.8;
    z-index: 10000;
}

img#load{
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 50px;
    height: 100px;
    box-shadow: 0px 0px 5px #000000;
    -webkit-box-shadow: 0px 0px 5px #000000;
    padding: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #000000;
    animation: loadings 2s linear infinite;
    -webkit-animation: loadings 2s linear infinite;
}

@keyframes loadings{
    0%{
        box-shadow: 0px 0px 5px #000000;
        -webkit-box-shadow: 0px 0px 5px #000000;
    }

    50%{
        box-shadow: 0px 0px 50px #000000;
        -webkit-box-shadow: 0px 0px 50px #000000;
    }

    100%{
        transform: rotate(360deg);
        box-shadow: 0px 0px 5px #000000;
        -webkit-box-shadow: 0px 0px 5px #000000;
    }
}

@-webkit-keyframes loadings{
    0%{
        box-shadow: 0px 0px 5px #000000;
        -webkit-box-shadow: 0px 0px 5px #000000;
    }

    50%{
        box-shadow: 0px 0px 50px #000000;
        -webkit-box-shadow: 0px 0px 50px #000000;
    }

    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        box-shadow: 0px 0px 5px #000000;
        -webkit-box-shadow: 0px 0px 5px #000000;
    }
}

@media screen and (min-width: 1024px){
    body{
        background-image: URL("../../index.php?imagewallpaper=login");
    }

    div#main{
        padding-bottom: 25px;
    }

    img#banner{
        margin-top: 25px;
        animation: build 0.5s linear forwards;
        -webkit-animation: build 0.5s linear forwards;
    }

    div#msg div{
        width: 800px;
        border: 0px solid #000000;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        box-shadow: 0px 0px 3px #000000;
        -webkit-box-shadow: 0px 0px 3px #000000;
        padding: 3px;
        animation: build 1s linear forwards;
        -webkit-animation: build 1s linear forwards;
    }

    div#msg div div{
        width: auto;
        border: 0px solid #000000;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        box-shadow: 0px 0px 0px #000000;
        -webkit-box-shadow: 0px 0px 0px #000000;
        padding: 0px;
    }

    form{
        width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 3px;
        background-color: #000055;
        margin-top: 10px;
        box-shadow: 0px 0px 3px #000000;
        -webkit-box-shadow: 0px 0px 3px #000000;
        animation: build 2s linear forwards;
        -webkit-animation: build 2s linear forwards;
    }

    input{
        border-bottom: 3px solid #000055;
    }

    input[type="submit"]{
        border-bottom: 0px solid #000000;
    }

    div#content a{
        display: inline-block;
        width: 390px;
        margin-top: 5px;
        border: 1px solid #000055;
    }

    @keyframes build{
        0%{
            opacity: 0;
        }

        50%{
            opacity: 0;
            transform: rotate(-1deg);
            -webkit-transform: rotate(-1deg);
        }

        100%{
            opacity: 1;
            transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
        }
    }

    @-webkit-keyframes build{
        0%{
            opacity: 0;
        }

        50%{
            opacity: 0;
            transform: rotate(-1deg);
            -webkit-transform: rotate(-1deg);
        }

        100%{
            opacity: 1;
            transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
        }
    }

}