body, html {
    margin: 0;
    padding: 0;
    height: 100%;

    background-color: #2564fc;
}

.container {

    height: 100%;
    background-color: white;
    /*background: linear-gradient(to right, #fbc2eb, #a6c1ee);*/

}

.login-form {
    background-color: #fff;
    width: 350px;
    height: 500px;
    border-radius: 15px;

    /* 定位到中心 */
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text {
    /* 标题Login的样式 */
    font-size: 30px;
    font-weight: bold;

    text-align: center;
    line-height: 80px;
    margin-top: 40px;
}

.form-item, .btn, .other {
    margin: 40px auto;
    width: 90%;
}

input {
    width: 80%;
    margin-top: 20px;
    padding: 10px;
    /* 边框效果 */
    border: 0;
    outline: none;
    border-bottom: 1px solid #CCCCCC;
}

input::placeholder {
    font-weight: bold;
    color: #acb7c9;
}

input:focus {
    /* 当输入框获取焦点时的效果 */
    /* box-shadow: 0px 0px 5px #fbc2eb;
    border-bottom: 1px solid #fff; */
    animation: bBottom 2s infinite;
}

@keyframes bBottom {
    50% {
        border-bottom: 1px solid #a6c1ee;
    }
}

.btn {
    width: 308px;
    height: 38px;
    background-color: #2564fc;
    border-radius: 25px;
}

.btn span {
    font-size: 16px;
    color: #ffffff;
    line-height: 38px;
}

.btn:hover {
    animation: btnAnimate 1s infinite;
}

@keyframes btnAnimate {
    50% {
        background-position: 200%;
    }
}

a {
    text-decoration: none;
    color: #fbc2eb;
}

/**logo*/
.logoCss {
    width: 67px;
    height: 67px;
}

.yhmCss {
    width: 20px;
    height: 22px;
}
