html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: url('../uploads/login_bg.jpg') no-repeat center center;
}

.login-container {
    width: 100%;
    height: 100%;
    background-color: #0C0F1C;
    opacity: 0.9;
    position: relative;

}

.bottom {
    width: 100%;
    height: 100px;
    background-color: #141224;
    text-align: center;
    line-height: 100px;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.login-content {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    transform: translate(-50%, -50%);
    width: 800px;

    .login-title {
        font-size: 50px;
        color: #fff;
        padding-bottom: 100px;
        text-align: center;
        letter-spacing: 10px;
    }

    .login-bottom {
        width: 474px;
        height: 456px;
        background-color: #fff;
        margin-left: 163px;
        text-align: center;
        opacity: 1.3;
        border-radius: 4px;

        .login-name {
            font-size: 30px;
            padding: 40px 0 81px 0;
            color: #999999;
        }

        input {
            width: 350px;
            height: 45px;
            outline: none;
            border: 2px solid #ebebeb;
            margin-bottom: 33px;
            text-indent: 10px;
            border-radius: 4px;
        }

        .btn-login {
            display: inline-block;
            width: 350px;
            height: 45px;
            text-align: center;
            line-height: 45px;
            background-color: #e86bb7;
            color: #fff;
            cursor: pointer;
            border-radius: 4px;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 40px;
        }

        .forget-register {

            .forget-password {
                color: #155F9E;
                padding-right: 10px;
                border-right: 1px solid #155F9E;
            }

            .register {
                color: #155F9E;
                padding-left: 3px;
            }
        }
    }

}