* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

body {
    background-image: url("/Content/Images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative
}



.logo {
    position: absolute;
    left: 105px;
    top: 50px;
}

    .logo img {
        width: 166px;
        height: 58px;
    }

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome {
    font-size: 24px;
    color: #1a1a1a;
    font-weight:700;
}

.small-welcome {
    font-size: 12px;
    font-weight: 400;
    color: #9a9a9a;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 400px;
    text-align: center;
}


button:hover {
    background: #4096ff;
}

.form-account {
    font-family: Microsoft Yahei;
    font-size: 12pt;
    color: #999999;
}

.form-password {
    margin-top: 30px;
    font-family: Microsoft Yahei;
    font-size: 12pt;
    color: #999999;
}

#txtaccount {
    border: none;
    padding: 0px;
    height: 32px;
    line-height: 32px;
    width: 260px;
    font-family: Î¢ÈíÑÅºÚ,ËÎÌå,Arial,Helvetica,Verdana,sans-serif;
    font-size: 11pt;
    color: #999999;
    background-color: #F0EEF1;
    padding-left: 5px;
}

#txtpassword {
    border: none;
    padding: 0px;
    height: 32px;
    line-height: 32px;
    width: 260px;
    font-family: Î¢ÈíÑÅºÚ,ËÎÌå,Arial,Helvetica,Verdana,sans-serif;
    font-size: 11pt;
    color: #999999;
    background-color: #F0EEF1;
    padding-left: 5px;
}

.form-bottom {
    margin-top: 38px;
    margin-left: 16px;
    height: 39px;
    line-height: 39px;
    text-align: center;
}

.btlogin {
    height: 40px;
    width: 300px;
    cursor: pointer;
    background-color: #ff7328;
    color: white;
    font-size: 14px;
    font-weight: 700;
}
input, button, select, textarea {
    outline: none;
    vertical-align:middle;
}

.form-message {
    height: 30px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.form-error-text {
    
    border: 1px solid #ee86a4;
    color: #9d2a16;
    font-family: Microsoft Yahei;
    height: 26px;
    line-height: 26px;
    background: #f8cad7 url('../Images/validatebox_warning.png') center left no-repeat;
    background-position: 10px 5.5px;
    border-radius: 4px;
}

.form-warning-text {
    border: 1px solid #f8e144;
    color: #000;
    font-family: Microsoft Yahei;
    height: 26px;
    line-height: 26px;
    background: #fdf7ce url('../Images/Icon16/bullet_error.png') center left no-repeat;
    background-position: 10px 5.5px;
    border-radius: 4px;
}

.form-succeed-text {
    padding-left: 5px;
    border-radius: 3px;
    color: #fff;
    font-family: Microsoft Yahei;
    border: 1px solid #5e8800;
    height: 26px;
    line-height: 26px;
    background: #62b600 url('../Images/loading1.gif') center left no-repeat;
    background-position: 10px 5.5px;
}