* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

.body {
    width: 100vw;
    height: 100vh;
    background: url(../images/bg.png) no-repeat center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin: 20px;
    font-size: 26px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.body_count {
    width: 90%;
    max-width: 340px;
    margin-top: 10vh;
}

.login_count {
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(42, 162, 163, 0.3);
}

.login_box {
    width: 100%;
}

.login_box .title {
    text-align: center;
    height: 42px;
    line-height: 42px;
    border-radius: 21px;
    color: #fff;
    background: #40E4E5;
    margin-bottom: 24px;
    font-size: 16px;
}

.login_bot_count {
    width: 100%;
    height: 44px;
    border: 1px solid #34D8DE;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: 12px;
    border-radius: 6px;
}

.login_bot_count i {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.login_bot_count .user {
    background-image: url(../images/user.png);
}

.login_bot_count .pwd {
    background-image: url(../images/pwd.png);
}

.login_bot_count input {
    flex: 1;
    height: 100%;
    border: none;
    margin-left: 10px;
    font-size: 14px;
}

.login_bot_count img {
    height: 24px;
    cursor: pointer;
}

.login_bot {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
    color: #898989;
}

.login_bot p {
    display: flex;
    align-items: center;
    gap: 4px;
}

.login_button {
    width: 100%;
    height: 42px;
    margin-top: 20px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    background: linear-gradient(to left, #40E4E5, #28CCD6);
    cursor: pointer;
    transition: all 0.3s;
}

.login_button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 复选框 */
#remember {
    width: 14px;
    height: 14px;
    position: relative;
}

#remember::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #dedede;
}

#remember:checked::before {
    content: '✓';
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #555;
}

/* 动画 */
.animate-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .body_count {
        margin-top: 8vh;
        padding: 0 10px;
    }
    .logo {
        font-size: 22px;
    }
}