* {
    box-sizing: border-box;
}

body {
    margin: initial;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(./img/bg-login.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.inner {
    display: flex;
    width: 50vw;
    min-height: 50vh;
    border-radius: 1vw;
    background-color: #fff;
    overflow: hidden;
}

.i-left {
    flex: 1;
    min-height: 50vh;
}

.form {
    margin-top: 30px;
    margin-left: 10%;
    width: 80%;
}

.f-item {
    margin-top: 20px;
    width: 100%;
    height: 40px;
}

.f-item:first-child {
    margin-top: initial;
}

.f-i-input {
    padding: 0 10px;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    border: initial;
    border-radius: 3px;
}

.f-i-code {
    display: flex;
    justify-content: space-between;
}

.f-i-code .f-i-input {
    flex: 1;
}

.f-i-code-text {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 0 10px;
    height: 100%;
    background-color: #f2f2f2;
    border-radius: 3px;
    color: #666;
    font-size: 16px;
}

.i-l-title {
    margin-top: 30px;
    font-size: 3vw;
    text-align: center;
    color: #3a7ecc;
    font-weight: bold;
}

.f-i-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    height: 50px;
    background-color: #3a7ecc;
    border-radius: 3px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.i-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40%;
    min-height: 50vh;
}

.i-r-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.i-r-logo {
    z-index: 2;
    width: 50%;
}

.i-r-text {
    margin-top: 20px;
    z-index: 2;
    font-size: 1.4vw;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-shadow: #3a7ecc 1.5px 0 0, #3a7ecc 0 1.5px 0, #3a7ecc -1.5px 0 0, #3a7ecc 0 -1.5px 0;
}