* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/bj.jpg") no-repeat;
    background-size: 100% 100%;
}

.login {
    width: 64vw;
    min-width: 840px;
    height: 670px;
    max-width: 1200px;
    background-color: #fff;
    display: flex;
    box-shadow: 2px 0px 12px 0px #999;
    border-radius: 2px;
}

.login .left {
    width: 32vw;
    min-width: 420px;
    flex: 1;
    text-align: center;
}

.login .left:first-child {
    border-right: 0.5px solid #0dedd8;
}

.login .left:last-child {
    padding: 46px 0;
    box-sizing: border-box;
}

.login .left .title {
    width: 400px;
    margin: 0 auto;
    font-weight: bold;
    text-align: left;
    font-size: 25px;
    color: #16554f;
}

.login .left .type {
    width: 400px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #16554f;
    cursor: pointer;
}

.login .left .type span {
    font-weight: bold;
}

.login .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login .left .type .active {
    position: relative;
}

.login .left .type .active::after {
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    background-color: #23b0a2;
    border-radius: 4px;
    position: absolute;
    bottom: -8px;
}

.login .left .input {
    width: 400px;
    margin: 0 auto;
}

.login .left .input .item {
    text-align: left;
    color: #16554f;
}

.login .left .input .item:first-child {
    margin: 60px auto 30px;
}

.login .left .input .item .border {
    border: 1px solid #02a495;
    height: 44px;
    padding-left: 10px;
    background-color: #eeeeee;
    margin-top: 4px;
}

.login .left .input .item span {
    font-size: 12px;
}

input {
    border: 0;
    width: 100%;
    height: 44px;
    line-height: 44px;
    outline: none;
    background-color: #eeeeee;
}

.login_btn {
    width: 400px;
    margin: 64px auto 0;
    height: 44px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background-color: #02a495;
    border: 1px solid #0dedd8;
    cursor: pointer;
}
