body {
    background-image: url("../../images/admin/bg1.png");
    background-size: cover;
    /* background-repeat: no-repeat; */
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

.login-box  {
    display: flex;
    align-items: stretch;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.login-img {
    float: left;
    width: 50%;
}

.login-img img{
    width: 100%;
    height: 100%;
}

.login-form {
    float: right;
    width: 50%;
    background-color: #fff;
    height: inherit;
}

.login-form .logo {
    text-align: center;
    margin-top: 30px;
}
.login-form .logo img {
    height: 60px;
}

.logo-text {
    text-align: center;
    color: #FFB200;
    font-size: 26px;
    margin-top: 4px;
    letter-spacing: 7px;
}

.tc {
    text-align: center;
}
.form-item {
    margin: 15px auto;
    width: 70%;
    position: relative;
}

.input-text {
    background: #FFFBF2;
    border-radius: 8px;
    height: 45px;
    border: 0px;
    width: 84%;
}

.input-text:focus {
    border-radius: 3px;
    border: 0;
    outline: 3px solid #FFB200;
}

.form-item button {
    width: 100%;
    border-radius: 8px;
    height: 41px;
    background: rgba(255, 178, 0, 0.95);
    color: #fff;
    border: 0px;
}

.form-item .icon-user {
    background: url("../../images/admin/user.png");
    background-size: cover;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 10px;
    left: 8px;
}

.form-item .user {
    padding-left: 45px;
}

.form-item .icon-pwd {
    background: url("../../images/admin/password.png");
    background-size: cover;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 10px;
    left: 8px;
}

.form-item .pwd {
    padding-left: 45px;
}
