html,body{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
input,select{
    outline: none;
    border: none;
    color: #999;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../../images/login/bg.jpg) no-repeat center center/cover;
}
.container .box{
    background-color: #fff;
    box-shadow:0 0 8px 1px #9DABB7 ;
    display: flex;
}
.container .box .left{
    flex: 4.5;
    min-width: 240px;
    background: url(../../images/login/01.jpg) no-repeat center center/cover;
}
.container .box .right{
    flex: 5.5;
    display: flex;
    flex-direction: column;
    padding: 70px 60px;
}
.container .box .right .title{
    display: flex;
    align-items: center;
}
.container .box .right .title img{
    width: 36px;
}
.container .box .right .title h3{
    margin-left: 8px;
    display: inline;
    font-size: 24px;
    color: #333;
}
.container .box .right .account, .container .box .right .password {
    box-shadow: 0 0 3px 1px #d6d6d6;
    margin: 3px 0;
    padding: 10px;
}
.container .box .right .select {
    display: inline-block;
    width: 300px;
    position: relative;
    vertical-align: middle;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    color: #555;
    box-shadow: 0 0 3px 1px #d6d6d6;
    text-shadow: none;
    transition: box-shadow 0.25s ease;
    z-index: 2;
    height: 36px;
}

.container .box .right .select:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.container .box .right .select:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #ccc;
    top: 14px;
    right: 10px;
    cursor: pointer;
    z-index: -2;
}
.container .box .right .select select {
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.container .box .right .select select:focus {
    outline: none;
}

.container .box .right .login{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container .box .right .login .tip{
    color: #999;
    font-size: 14px;
}
.container .box .right .login button{
    display: inline-block;
    min-height: 26px;
    min-width: 50px;
    background: url(../../images/login/03.png) no-repeat center center/cover;
    outline: none;
    border: none;
    cursor: pointer;
}
