/* 登录页面样式 - Element UI 2.x */

body {
    background-color: #f5f7fa;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.login-card {
    width: 420px;
    border-radius: 8px;
    border: none;
}

.login-card .el-card__body {
    padding: 40px;
}

/* Logo */
.login-logo {
    text-align: center;
    margin-bottom: 16px;
}

.logo-icon {
    font-size: 48px;
    color: #409eff;
}

/* 标题 */
.login-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #303133;
    margin: 0 0 8px 0;
}

.login-subtitle {
    text-align: center;
    font-size: 14px;
    color: #909399;
    margin: 0 0 24px 0;
}

/* 分割线 */
.login-divider {
    height: 1px;
    background-color: #e4e7ed;
    margin-bottom: 24px;
}

/* 表单 */
.login-form {
    width: 100%;
}

.login-form .el-form-item__label {
    padding-bottom: 8px;
    font-weight: 500;
}

.login-form .el-input__inner {
    height: 40px;
    line-height: 40px;
}

/* 登录按钮 */
.login-btn {
    width: 100%;
    height: 40px;
    font-size: 16px;
    margin-top: 10px;
}

/* 版权信息 */
.login-copyright {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #909399;
}

/* 版本号（随 app_version 动态渲染） */
.login-version {
    margin-left: 8px;
    color: #c0c4cc;
}
