.login-bg {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: url(../images/bg-1.png) no-repeat center 100%;
}

.login-title {
    width: 450px;
    height: auto;
    padding-top: 20vh;
    margin: 0 auto 40px;
}
.login-title img{
    width: 100%;
}
.login-box {
    width: 450px;
    background: rgba(0, 46, 115, 0.5);
    margin: 0 auto;
    box-sizing: border-box;
    padding: 40px 60px;
}

.login-choices {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
}

.login-choices .title-item {
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
    padding-bottom: 10px;
    cursor: pointer;
}

.login-choices .active {
    opacity: 1;
    position: relative;
}

.login-choices .active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.login-nav .type {
    margin-top: 25px;
}

.input-box {
    height: 50px;
    background: rgba(67, 67, 67, 0.19);
    border: 2px solid #00A0E9;
    border-radius: 3px;
    margin-bottom: 30px;
    line-height: 50px;
    display: flex;
    position: relative;
}

.input-box img {
    width: 20px;
    height: 20px;
    margin: 15px;
}

.input-box input {
    height: 50px;
    flex: 1;
    border: none;
    background: none;
    color: #fff;
    font-size: 16px;
}

.input-box input:focus {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.input-box span {
    font-size: 20px;
    color: #fff;
    margin-right: 20px;
    font-weight: bold;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(0deg, #0247B6, #0086E7);
    border-radius: 4px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
    border: none;
}

.type label{
    color: red;
    font-size: 14px;
    line-height: 32px;
    width: 100%;
    position: absolute;
    top: -32px;
    left: 0;
}