﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

p {
    padding: 0;
    margin: 0
}
.login-container {
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height: 100%;
    min-width: 1200px;
}

.login-logo-container img {
    width: 45px;
    vertical-align: middle;
    padding: 0 15px;
    box-sizing: content-box;
    border-radius:50%;
}

.login-logo-container {
    background: rgba(255,255,255,.4);
    font-size: 22px;
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
}

    .login-logo-container span {
        display: inline-block
    }

.login-center-container {
    height: calc(100% - 61px);
    width: 100%;
}

.login-outer {
    width: 720px;
    position: relative;
}

.login {
    width: 360px;
    float: left;
    box-sizing: border-box;
    padding: 20px 20px 30px 20px;
    background: rgba(255,255,255,.9);
    border-radius: 5px;
}

.login-title {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 5px;
}

.login-text {
    float: left;
    font-size: 18px;
    font-weight: 400;
}

.login-right-btn {
    float: right;
    margin-top: -7px;
}

    .login-right-btn i {
        cursor: pointer;
        font-size: 26px;
    }

        .login-right-btn i:hover {
            color: red
        }


.login-input p {
    padding: 10px 0;
}

.login-btn {
    margin-top:30px;
}

    .login-btn button {
        background-color: #00c1de !important;
        font-size: 14px;
        border: none;
        outline: none;
    }

.code-img {
    width: 291px;
    height: 329px;
    position: relative;
    margin: 28px auto 20px auto;
}



.code-img img {
    opacity: 1
}

.code-img i {
    position: absolute;
    top: 50px;
    left: 56px;
    font-size: 28px;
}

.code-img .active {
    animation: rotate 1.5s infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}
#identifyingCode {
    width: 50%;
}
#codeImg {
    width: 40%;
    height: 34px;
    vertical-align: top;
    cursor:pointer;
}
.redBorder {
border:1px solid red;
}
@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}
