.logo{
    height: 28px;
}
/*-------登录表单---------*/
.login-body{
    position: fixed;
    top:150px;
    right: 50px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.login-body *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 登录容器 - 多层阴影+内边距层级 */
.login-wrapper {
    width: 280px;
}
.login-container {
    background-color: white;
    width: 100%;
    padding: 25px 25px;
    border-radius: 12px;
    /* 双层阴影营造层次感 */
    box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.08),
            0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* 顶部装饰条 - 增加视觉层次 */
.login-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #409EFF, #67c23a);
}

/* 标题层级设计 */
.login-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #303133;
    margin-bottom: 8px;
}
.login-subtitle {
    text-align: center;
    font-size: 12px;
    color: #909399;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* 表单组间距层级 */
.form-group {
    margin-bottom: 15px;
    position: relative;
}
/* 标签样式层级 */
.form-label {
    display: block;
    font-size: 12px;
    color: #606266;
    margin-bottom: 8px;
    font-weight: 500;
}
/* 输入框层级设计 */
.form-input {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    border: 1px solid #e5e6eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fafafa;
}
/* 聚焦态强化 */
.form-input:focus {
    border-color: #409EFF;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(64, 158, 255, 0.1);
}
.form-input::placeholder {
    color: #c0c4cc;
}

/* 按钮层级设计 */
.login-btn {
    width: 100%;
    height: 35px;
    background-color: #409EFF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.login-btn:hover {
    background-color: #337ecc;
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
}
.login-btn:active {
    transform: translateY(1px);
}

/* 底部链接区 */
.login-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.login-footer a {
    color: #409EFF;
    text-decoration: none;
}
.login-footer a:hover {
    text-decoration: underline;
}

/* 响应式适配 - 保持层级感 */
@media (max-width: 450px) {
    .login-container {
        padding: 25px 25px;
        margin: 0 15px;
    }
    .login-title {
        font-size: 24px;
    }
    .form-group {
        margin-bottom: 20px;
    }
}