/* 背景 */
.wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-pic {
    position: absolute;
    display: block;
    /* 缩放不变形 */
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -99;
}

.logo-pic {
    position: absolute;
    top: 0.3rem;
    left: 0.4rem;
    display: block;
    width: 0.5rem;
    height: 0.5rem;
}


/* 登录框 */
.login {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.sign-in-form {
    display: flex;
    flex-direction: column;
    padding: 0.4rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.1rem;
}

.title {
    display: flex;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.title-text {
    font-size: 0.2rem;
    color: #333;
    font-family: PingFangSC-Medium, sans-serif;
}

.input-field {
    display: flex;
    padding: 0.2rem 0;
    border-bottom: 0.01rem solid #1D2088;
    margin-bottom: 0.1rem;
}

.input-field i {
    font-size: 0.16rem;
    color: #1D2088;
    padding-right: 0.2rem;
}

.input-field input::placeholder {
    color: #666;
}

.check {
    display: flex;
    align-items: center;
    margin-top: 0.1rem;
}

.checkbox {
    width: 0.12rem;
    height: 0.12rem;
    margin-right: 0.1rem;
}

.check-text {
    font-size: 0.14rem;
    color: #666;
    padding-right: 0.1rem;
    font-family: PingFangSC, sans-serif;
}

.submit {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    font-size: 0.14rem;
    width: 3rem;
    padding: 0.1rem 0;
    margin: 0.5rem 0 0.1rem;
    border-radius: 0.12rem;
    background-color: #1D2088;
    color: #fff;
    font-family: PingFangSC, sans-serif;
    cursor: pointer;
}

.bottom {
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    transform: translate(-50%);
}

.bottom-text {
    font-size: 0.14rem;
    color: #000;
    font-family: PingFangSC, sans-serif;
}