* {
    margin: 0;
    padding: 0;
}

input, button, select, textarea {
    outline: none
}

.contains {
    display: flex;
    overflow: hidden;
}

.contains-left {
    width: 37.5%;
    height: 100vh;
    background-image: url("../img/login-bg.png");
    background-size: cover;
    position: relative;
}

.contains-right {
    width: 62.5%;
}

.primary-image {
    position: absolute;
    bottom: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: 130%;
    min-width: 590px;
}

.loginForm {
    margin: 22.2vh auto 0;
    max-width: 400px;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.top-title {
    display: flex;
    align-items: center;
    margin-bottom: 72px;
}

.top-title .company {
    font-size: 36px;
    font-weight: bold;
    margin-left: 20px;
}

/* .logo {
    width: 506px;
    height: 72px;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat!important;
    margin-bottom: 72px;
} */

.title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}

.input-item {
    width: 400px;
    height: 52px;
    margin-bottom: 24px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.input-item-code .input-item {
    width: 200px;
    margin-bottom: 0;
}

.input-item-code {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.input-item-code .code {
    width: 160px;
    height: 40px;
    margin-left: 36px;
}

.input-item:hover {
    border: 2px solid #409EFF;
}

.input-item input {
    width: 380px;
    height: 48px;
    margin-left: 10px;
    border: unset;
}

.automatic-login {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.automatic-login input {
    margin-right: 10px;
}

.login {
    width: 400px;
    height: 52px;
    margin-top: 30px;
    background-color: #006eff;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 650;
    box-shadow: 0 4px 8px 0 rgb(26 90 216 / 32%);
    border: unset;
}

.login:hover {
    opacity: 0.8;
}