* {
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul, li {
    list-style: none;
}

button {
    border: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

ul, li {
    list-style: none;
}

input, button, select {
    border: none;
    font-size: 16px;
    background-color: transparent;
}

a {
    text-decoration: none;
}

input[disabled] {
    background-color: transparent;
}

button {
    cursor: pointer;
}

button[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

input, button, select, textarea {
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

body {
    background: url("images/login_bg.png") no-repeat 100% 100%;
}

.content {
    width: 600px;
    height: 400px;
    margin: 15% auto;
    border-radius: 5px;
}

.content .header {
    height: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
}

.content .header .header-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: url("images/login_icon.png") no-repeat;
    background-size: 100% 100%;
}

.content .login {
    width: 100%;
    height: 340px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px #0034c4;
}

.content .login .left {
    width: 250px;
    float: left;
    background: url("images/login.png") no-repeat;
    background-size: 100% 100%;
    height: 100%;
}

.content .login .right {
    float: right;
    height: 100%;
    background-color: white;
    width: 300px;
    margin-left: 25px;
    margin-right: 25px;
}

.content .login .right h1 {
    font-size: 18px;
    color: black;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.content .login .right .form-group {
    height: 55px;
    width: 100%;
    position: relative;
}

.content .login .right .form-group input {
    height: 40px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    line-height: 40px;
    text-indent: 15px;
    width: 100%;
    font-size: 15px;
}

.content .login .right .form-group input:focus {
    border: 1px #ff7200 solid;
}

.content .login .right .form-group button {
    height: 40px;
    width: 100%;
    background: linear-gradient(90deg, #0073f5 0%, #0034c4 100%);
    color: white;
    font-size: 16px;
    line-height: 40px;
    border-radius: 5px;
}

.content .login .right .form-group img {
    position: absolute;
    height: 42px;
    width: 120px;
    top: 0px;
    right: -2px;
    cursor: pointer;
    border-radius: 0 4px 4px 0
}

.content .checkbox {
    border: 1px solid #d0cfcf;
    width: 20px;
    height: 20px;
    float: left;
    background-color: white;
    cursor: pointer;
}

.content .checkbox:hover {
    border: 1px solid #0071f4;
}

.content .checkbox.on {
    background-color: #0071f4;
    border: 1px solid #0071f4;
}

.content .checkbox.on:after {
    margin-left: 3px;
    margin-top: 5px;
    content: "";
    width: 12px;
    height: 6px;
    position: absolute;
    border: 1px solid white;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
}

.content .login .right .form-group .auto {
    margin-left: 10px;
    margin-right: 10px;
    color: black;
}

.check {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    height: 25px !important;
}

.error {
    color: red;
    width: 100%;
    text-align: center;
    display: none;
    font-weight: normal;
    margin-top: 5px;
    font-size: 16px;
}



