* {box-sizing: border-box;}
body{padding:0px; margin:0px; font-size:14px;}
.login-container {
    height: 100vh;
    width: 100vw;
    background: url(../images/login2/login-bg.png) no-repeat #fff;
    background-size: cover;
    background-size: 100% 100%;
    background-position: top;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.login-form{
    position: relative;
    margin: 0 auto;
    width: 570px;
    height: 460px;
    padding: 52px 55px 50px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px #ddd;
}
.title-container .title{
    font-size: 26px;
    margin: 0 auto 42px auto;
    text-align: center;
    font-weight: 700;
}
.el-form-item {
	margin-bottom:18px;
}
.el-form-item__content,.el-form-item__label{
	line-height: 32px;
}
.el-input {
	position: relative;
    display: inline-block;
    height: 47px;
	width: 100%;
}
.el-input input {
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 6px 5px 6px 0;
    height: 47px;
    caret-color: #000;
    border-bottom: 1px solid #ddd;	
}
.el-input__inner {
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    color: #333;
    display: inline-block;
    font-size: inherit;
    height: 40px;
    line-height: 40px;
    outline: none;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 100%;
}
.el-input__inner:focus{
	background-color:#transparent;
}
.el-form-item__error {
	padding-top:2px; color:#F00;
}
.login-form button {
    font-size: 18px;
    color: #fff;
    border-radius: 8px;
}
.el-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-color: #dcdfe6;
    color: #333;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 400;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
}
.el-button--primary {
    color: #fff;
    background-color: #1890ff;
    border-color: #1890ff;
}
.el-button--primary:hover {
    background: #46a6ff;
    border-color: #46a6ff;
    color: #fff;
}
.logo {
    width: 120px;
    position: fixed;
    top: 20px;
    left: 50px;
}