﻿@charset "utf-8";
body {
    background-color: #3895e8;
}

.login-box {
    box-sizing: border-box;
    height: 100vh;
    background-size: auto 100vh;
    position: relative;
}

.form-data {
    background-color: #ffffff;
    width: 460px;
    left: 50%;
    margin-left: -230px;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0,0,0,.1);
    padding: 65px 0 30px 0;
    position: fixed;
    top: 15%;
}

    .form-data .head-logo {
        position: absolute;
        top: -47px;
        left: 116px;
    }

.change-login {
    text-align: center;
    color: #3895e8;
    padding-bottom: 20px;
}

.p-input {
    border-bottom: 1px solid #eaeaea;
    margin: 15px 10%;
    width: 80%;
    padding: 0;
}

.layui-input {
    border: none;
    padding-bottom: 2px;
    margin-bottom: 0;
}

.login-btn {
    background-color: #e5e5e5;
    font-size: 18px;
    font-weight: bold;
    color: white;
    height: 50px;
    line-height: 50px;
    vertical-align: middle;
    text-align: center;
    margin: 20px 10%;
    display: block;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    width: 80%;
    color: #a0a0a0;
}

    .login-btn:hover {
        background-color: #e8e8e8;
        border-radius: 5px;
        color: #a0a0a0;
    }

.r-forget {
    width: 80%;
    margin: 20px 10% 0 10%;
    text-align: right;
}

    .r-forget a {
        color: #cacaca;
    }

::-webkit-input-placeholder { /* WebKit browsers */
    color: #cacaca;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #cacaca;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #cacaca;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #cacaca;
}

.third-party {
    text-align: center;
}

.third-party {
    width: 100%;
    text-align: center;
}

    .third-party .icon {
        font-size: 40px;
        color: #e5e5e5;
    }

        .third-party .icon:hover {
            color: aqua;
        }

.login-footer {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: -40px;
    color: rgba(0,0,0,.3);
}