body {
    padding: 0;
    margin: 0;
}

img{
	width: 100%;
}

.login {
    height: 1000px;
    width: 100%;
    position: relative;
}

.login_box {
    width: 900px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    box-shadow: 1px 4px 22px -8px #0004;
    display: flex;
    overflow: hidden;
}

.login_box .left{
    width: 41%;
    height: 100%;
    padding: 25px 25px;  
}

.login_box .right{
    width: 59%;
    height: 100%  
}

.left .contact{
	display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    height: 100%;
    width: 73%;
    margin: auto;
}

.left h3{
    text-align: center;
    margin-bottom: 40px;
}

.left input {
    width: 80%;
    margin: 15px 0px;
    padding: 7px 9px;
    width: 100%;
    overflow: hidden;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
}

.submit {
    border-radius: 8px;
    display: block;
    margin: auto;
    margin-top: 30px;
    font-weight: bold;
}

.right {
	position: relative;
}

.right .right-text{
    height: 100%;
    position: relative;
    transform: translate(0%, 37%);
}

.right-text h2{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 500;
}

.right-text h5{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}

.right .right-inductor{
    position: absolute;
    width: 70px;
    height: 7px;
    background: #fff0;
    left: 50%;
    bottom: 70px;
    transform: translate(-50%, 0%);
}

.top_link img {
    width: 28px;
    padding-right: 7px;
    margin-top: -3px;
}