
body {
    font-family: 'Verdana', sans-serif;
    font-size: 15px;
    font-weight: lighter;
    color: #666;
    background-color: #0A3F5F;
}

.white {
    background: #fff;
}

/* ALLGEMEINE FORMATIERUNGEN START */

div[class^="clear"] {
    clear: both;
}

.clear5 {
    height: 5px;
}

.clear10 {
    height: 10px;
}

.clear15 {
    height: 15px;
}

.clear20 {
    height: 20px;
}

h1, .h1 {
    color: #fff;
    margin: 0;
    font-size: 26px;
    font-weight: normal;
    display: inline-block;
    position: relative;
}

@media screen and (min-width: 768px) {
    h1:after, .h1:after {
        content: "...";
        position: absolute;
        right: -60px;
        font-size: 75px;
        line-height: 0;
        top: -6px;
        letter-spacing: -3px;
    }
}

/* ALLGEMEINE FORMATIERUNGEN ENDE */

/* LOGIN PAGE START */

.container-small {
    max-width: 410px;
}

#login-bg {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: fixed;
    background: url('/gfx/webadmin/login_bg.svg') no-repeat bottom center;
    background-size: contain;
    opacity: 0.02;
    z-index: -1;
}

#login-wrapper {
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-top: 20%;
    margin-bottom: 40px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#login-logo {
    padding: 20px 0;
    width: 245px;
    height: 120px;
}

#login-content {
    padding: 30px 50px;
    background: #eee;
    border-top: solid 4px #B4CB3C;
    border-bottom: solid 1px #ddd;
    position: relative;
    min-height: 300px;
}

#login-footer {
    padding: 8px 50px;
}

#login-footer a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

#login-footer a:hover {
    color: #000;
}

@media screen and (max-height: 710px) {
    #login-wrapper {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    #login-bg {
        background: #0A3F5F;
    }

    #login-wrapper {
        margin: 0;
    }

    #login-content {
        padding: 20px;
    }

    #login-footer {
        padding: 8px 20px;
    }

    #login-wrapper {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .container-small {
        padding: 0;
        max-width: none;
    }
}

/* FORM START */

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border-radius: 0;
    background: #f0f0f0;
    color: #ccc;
    font-weight: 400;
    -webkit-appearance: none; /* for box shadows to show on iOS */
    border: solid 1px #fff;
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #ccc;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.icon {
    color: #ddd;
    font-size: 170% !important;
}

/* login */
.input--login {
    background: #fff;
    overflow: hidden;
}

.input--login::after {
    content: '';
    width: 1px;
    position: absolute;
    top: 0.5em;
    bottom: 0.5em;
    left: 2.5em;
    background: #f0f0f0;
    z-index: 100;
}

.input__field--login {
    background: transparent;
    padding: 1em 1em 1em 3.15em;
    width: 100%;
    color: #0A3F5F;
}

.input__label--login {
    position: absolute;
    width: 100%;
    text-align: left;
    padding-left: 4.5em;
    pointer-events: none;
}

.icon--login {
    width: 1.65em !important;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.8em 0 0 0.5em;
}

.input__label-content--login {
    padding: 1.7em 0;
    display: inline-block;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    text-transform: uppercase;
    color: #ccc;
    letter-spacing: 1px;
}

.input__label-content--login span {
    display: inline-block;
}

.input__field--login:focus + .input__label--login .input__label-content--login,
.input--filled .input__label-content--login {
    -webkit-animation: anim-login-1 0.3s forwards;
    animation: anim-login-1 0.3s forwards;
}

@-webkit-keyframes anim-login-1 {
    50% {
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    51% {
        -webkit-transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
        transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
    }
    100% {
        color: #ccc;
        -webkit-transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
        transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
    }
}

@keyframes anim-login-1 {
    50% {
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    51% {
        -webkit-transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
        transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
    }
    100% {
        color: #ccc;
        -webkit-transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
        transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
    }
}

.input__field--login:focus + .input__label--login .icon--login,
.input--filled .icon--login {
    -webkit-animation: anim-login-2 0.3s forwards;
    animation: anim-login-2 0.3s forwards;
}

@-webkit-keyframes anim-login-2 {
    50% {
        opacity: 1;
        -webkit-transform: translate3d(0, -3em, 0);
        transform: translate3d(0, -3em, 0);
    }
    50.25% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3em, 0);
        transform: translate3d(0, -3em, 0);
    }
    50.75% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    51% {
        opacity: 1;
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        color: #0A3F5F;
    }
}

@keyframes anim-login-2 {
    50% {
        opacity: 1;
        -webkit-transform: translate3d(0, -3em, 0);
        transform: translate3d(0, -3em, 0);
    }
    50.25% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3em, 0);
        transform: translate3d(0, -3em, 0);
    }
    50.75% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    51% {
        opacity: 1;
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        color: #0A3F5F;
    }
}

#login-content ::-webkit-input-placeholder {
    color: #999 !important;

}

#login-content :-moz-placeholder { /* older Firefox*/
    color: #999 !important;

}

#login-content ::-moz-placeholder { /* Firefox 19+ */
    color: #999 !important;

}

#login-content :-ms-input-placeholder {
    color: #999 !important;
}


.emptyerror label {
    font-size: 10px;
    font-weight: normal;
}


input.error {
    border-color: #A94442;
}

.error {
    color: #A94442;
}

/* LOGIN PAGE END */

/* tmp */
.wait_loading {
    background: url(/gfx/loading_workaway.gif) center no-repeat;
    height: 120px;
    width: 120px;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -60px;
    position: absolute;
    z-index: 3;
    opacity: .80; /* Standard: FF gt 1.5, Opera, Safari */
    filter: alpha(opacity=80); /* IE lt 8 */
    -ms-filter: "alpha(opacity=80)"; /* IE 8 */
    -khtml-opacity: .80; /* Safari 1.x */
    -moz-opacity: .80; /* FF lt 1.5, Netscape */
}
