.login-container {
    width: 400px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    height: 60px;
    margin-bottom: 15px;
}

.login-title {
    color: #303133;
    font-size: 24px;
    margin: 0;
}

.login-form {
    margin-top: 20px;
}

.login-button {
    width: 100%;
    margin-top: 20px;
    background: #409eff;
    border: none;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: #66b1ff;
}

.login-button:active {
    background: #3a8ee6;
}

/* 滑块验证样式 */
.slider-container {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #ecf5ff;
    border: 1px solid #b3d8ff;
    border-radius: 8px;
    overflow: hidden;
}

.slider-mask {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #b3d8ff;
    border-radius: 8px 0 0 8px;
    transition: width 0.3s ease-in-out;
}

.slider-text {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 40px;
    color: #409eff;
    font-weight: bold;
    user-select: none;
    z-index: 1;
}

.slider-button {
    position: absolute;
    left: 0;
    top: -1px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #dcdfe6;
    cursor: pointer;
    transition: left 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-button:hover {
    background-color: #f5f7fa;
}

/* 滑块验证成功状态 */
.slider-success .slider-mask {
    background-color: #67C23A;
}

.slider-success .slider-text {
    color: #fff;
}

.slider-success .slider-button {
    border-color: #67C23A;
    color: #67C23A;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .login-container {
        width: 90%;
        padding: 20px;
    }
    
    .login-logo {
        height: 50px;
    }
    
    .login-title {
        font-size: 20px;
    }
}
