/*login page*/
b, body, div, form, html, label, tr {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-style: normal;
    vertical-align: baseline;
    outline: 0
}

body, html {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    color: #444;
    -webkit-font-smoothing: antialiased;
    background: #f0f0f0
}

#container {
    position: fixed;
    width: 340px;
    height: 280px;
    top: 50%;
    left: 50%;
    margin-top: -140px;
    margin-left: -170px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1)
}

form {
    margin: 0 auto;
    margin-top: 20px
}

label {
    color: #555;
    display: inline-block;
    margin-left: 18px;
    padding-top: 10px;
    font-size: 14px
}

input {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    outline: 0
}

input[type=password], input[type=text] {
    color: #777;
    padding-left: 10px;
    margin: 10px;
    margin-top: 12px;
    margin-left: 18px;
    width: 290px;
    height: 35px;
    border: 1px solid #c7d0d2;
    border-radius: 2px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease
}

input[type=password]:focus, input[type=text]:focus {
    border-color: #51a7e8 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .075) inset, 0 0 5px rgba(81, 167, 232, .5)
}

#lower {
    background: #e0edf8;
    width: 100%;
    height: 63px;
    margin-top: 20px;
    border-top: 1px solid #ccc
}

input[type=checkbox] {
    margin-left: 20px;
    margin-top: 30px
}

.check {
    margin-left: 3px;
    font-size: 11px;
    color: #444;
    text-shadow: 0 1px 0 #fff
}

input[type=submit] {
    float: right;
    margin-right: 20px;
    margin-top: 20px;
    width: 80px;
    height: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #acd6ef;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#acd6ef), to(#6ec2e8));
    background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0, #6ec2e8 100%);
    background-image: linear-gradient(top left 90deg, #acd6ef 0, #6ec2e8 100%);
    border-radius: 30px;
    border: 1px solid #66add6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    cursor: pointer
}

input[type=submit]:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#b6e2ff), to(#6ec2e8));
    background-image: -moz-linear-gradient(top left 90deg, #b6e2ff 0, #6ec2e8 100%);
    background-image: linear-gradient(top left 90deg, #b6e2ff 0, #6ec2e8 100%)
}

input[type=submit]:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#6ec2e8), to(#b6e2ff));
    background-image: -moz-linear-gradient(top left 90deg, #6ec2e8 0, #b6e2ff 100%);
    background-image: linear-gradient(top left 90deg, #6ec2e8 0, #b6e2ff 100%)
}
#error {
    color: #DB4C4C;
    font-size: 0.8em;
    text-align: center;
    font-weight: normal;
}
/*end login page*/

/*other style*/

/*end other style*/