
.login-box {
    margin: 0 auto;
    position: fixed;
    left: 41%;
}

.svg-container {
    position: relative;
}

.svg-container img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.svg-container img.z2 {
    z-index: 2;
}

.svg-container img.logo {
    z-index: 10;
    top: 70px;
}

.login-box-body {
    position: relative;
    top: 180px;
    border: 0 none;
    background: transparent;
}

.login-box-body .form-control-feedback {
    background: black;
    color: #00998a;
    border: 1px solid #00998a;
}

.login-box-body select.form-control {
    padding: 5px 13px;
    border: 0;
    background: url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png") no-repeat right #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-position-x: 87%;
}

.forgot-password-link {
    font-weight: bold;
    font-size: 16px;
    text-decoration: underline;
}

.registration-link {
    float: right;
    font-weight: bold;
    font-size: 16px;
    text-decoration: underline;
}

.move__svg {
    -webkit-animation: svgMove 5s infinite;
    animation: svgMove 5s infinite;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: svgMove;
}

.svg__top {
    width: 85%;
    top: -14%;
    left: 20%;
    -webkit-animation: svgMove 8s infinite;
    animation: svgMove 8s infinite;
}

@-webkit-keyframes svgMove {
    from {
        -webkit-transform: rotate(0) translate(-16px) rotate(0);
        transform: rotate(0) translate(-16px) rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg) translate(-16px) rotate(-360deg);
        transform: rotate(360deg) translate(-16px) rotate(-360deg)
    }
}
@-webkit-keyframes svgMove_2 {
    from {
        -webkit-transform: rotate(0) translate(16px) rotate(0);
        transform: rotate(0) translate(16px) rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg) translate(16px) rotate(-360deg);
        transform: rotate(360deg) translate(16px) rotate(-360deg)
    }
}