.modal-body {
    position: relative;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
    line-height: 80px;
}

.modal-footer {
    height: 60px;
    line-height: 60px;
    padding-bottom: 10px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.glyphicon {
    position: relative;
    top: 0px; /*notsame*/
    left: 0px; /*notsame*/
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 100; /*notsame*/
    line-height: 1;
    font-size: 50px; /*notsame*/
    vertical-align: middle; /*notsame*/
    color: orange; /*notsame*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-user:before {
    content: "\e008";
    font-size: 20px; /*notsame*/
}

.glyphicon-lock:before {
    content: "\e033";
    font-size: 20px; /*notsame*/
}

.form-inline .input-group>.form-control {
    width: 70%; /*notsame*/
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 10px auto; /*notsame*/
    width: 55%; /*notsame*/
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 90%; /*notsame*/
    margin-bottom: 0;
}

#regist,
#login {
    width: 27%;
}

.login_tips {
    position: absolute;
    left: 14%;
    top: 5px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #a94442;
    padding-left: 55px;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-500px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }
    75% {
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        transform: translate3d(5px, 0, 0);
    }
    to {
        transform: none;
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {
    from,
    to {
        transform: translate3d(0, 0, 0);
    }
    25%,
    75% {
        transform: translate3d(-20px, 0, 0);
    }
    50% {
        transform: translate3d(20px, 0, 0);
    }
}

.shake {
    animation-name: shake;
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing;
}

.vcode span {
    color: rgba(255, 255, 255, 0);
    cursor: pointer;
    background: #fff;
    width: 66px;
}
